2 条题解

  • 0
    @ 2023-8-9 20:21:58

    #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<string> #include<cstring> const int INF=0x3f3f3f3f; const int N=1e5+10; using namespace std; int n; int main() { cin>>n; for(int i = 1;i<=n;i++) { for(int j = 1;j<=n-i;j++) cout<<" ";

    for(char j = 'A';j<='A'+i-1;j++)
    		cout<<j;
    		
    	for(char j = 'A'+i-2;j>='A';j--)
    		cout<<j;
    	cout<<endl;
    }
    
    return 0;
    

    }

    • 0
      @ 2022-8-15 15:52:40
      #include<queue>
      #include<math.h>
      #include<stack>
      #include<stdio.h>
      #include<iostream>
      #include<vector>
      #include<iomanip>
      #include<string.h>
      #include<algorithm>
      #include<bits/stdc++.h>
      using namespace std;
      #define LL long long
      const int N=1e6+10;
      const int INF=0x3f3f3f3f;
      int main()
      {
      	int n;
          cin >> n;
          for (int i=1;i<=n;i++)
      	{
              for (int j=1;j<=n-i;j++)
      		{
                  cout<<" ";
              }
              for (int j=1;j<=i;j++)
      		{
                  cout<<char('A'-1+j);
              }
              for (int j=i-1;j>0;j--)
      		{
              	cout<<char('A'-1+j);
      		}
              cout<<endl;
          }
      	return 0;
      }
      
      • 1

      信息

      ID
      1511
      时间
      1000ms
      内存
      256MiB
      难度
      7
      标签
      递交数
      177
      已通过
      44
      上传者