2 条题解

  • -1
    @ 2023-10-5 15:25:39

    #include<bits/stdc++.h> using namespace std; int main(){ cout<<" A"<<endl; cout<<" BAB"<<endl; cout<<" CBABC"<<endl; cout<<" DCBABCD"<<endl; cout<<"EDCBABCDE"<<endl; return 0; }

    • -1
      @ 2023-8-17 22:40:42
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int n;
      	char a;
      	cin>>n;
      	for(int i=1;i<=n;i++){
      		for(int j=1;j<n-i+1;j++) cout<<" ";
      		for(int j=i-1;j>=1-i;j--){
      			a=65+abs(j);
      			cout<<a;
      		}
      		cout<<endl;
      	}
      }
      
      • 1

      信息

      ID
      97
      时间
      1000ms
      内存
      16MiB
      难度
      4
      标签
      递交数
      44
      已通过
      22
      上传者