1 条题解

  • 1
    @ 2024-1-18 17:45:34
    #include <bits/stdc++.h>
    using namespace std;
    int main(){
        int a,g=1;
        cin>>a;
        for(int i=1;i<=a;i++){
        	for(int j=1;j<=a-i;j++){
        		cout<<" ";
    		}
    		for(int k=1;k<=g;k++){
    			cout<<1;
    		}
    		cout<<endl;
    		g+=2;
    	}
        return 0;
    }
    
    • 1

    信息

    ID
    180
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    递交数
    6
    已通过
    3
    上传者