3 条题解

  • 0
    @ 2023-12-2 14:13:37

    #include<bits/stdc++.h> using namespace std; 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*2-1;j++){ cout<<i; } cout<<endl; } return 0; }

    • 0
      @ 2023-11-16 20:02:58
      #include <bits/stdc++.h>
      using namespace std;
      
      int main() {
      	int n;
      	cin >> n;
      	for (int i = 1; i <= n; i++) {
      		for (int j = 0; j < n - i; j++) {
      			cout << " ";
      		}
      		for (int j = 0; j < i * 2 - 1; j++) {
      			cout << i;
      		}
      		cout << endl;
      	}
      	return 0;
      }
      
      • 0
        @ 2023-9-22 21:04:06
        #include <bits/stdc++.h>
        using namespace std;
         
        int main(){
            int n;
            cin>>n;
            int i,j;
            //循环展示n行 
            for(i=1;i<=n;i++){
                //循环数字前空格的展示 
                for(j=1;j<=n-i;j++){
                    cout<<" ";
                }
                //数字的循环展示 
                for(j=1;j<=2*i-1;j++){
                    cout<<i;
                }
                cout<<endl;
            }
            return 0;
        }
        
        
        
        
        • 1

        信息

        ID
        49
        时间
        1000ms
        内存
        16MiB
        难度
        2
        标签
        递交数
        66
        已通过
        40
        上传者