2 条题解

  • 1
    @ 2023-3-18 9:54:55
    #include<bits/stdc++.h>
    using namespace std;
    int a[10][10];
    int main(){
    int gr,hy=0;
    cin>>gr;
    for(int i=gr;i>=1;i--){
    for(int j=1;j<=gr;j++){
    a[j][i]=++hy;	
    }
    }
    for(int i=1;i<=gr;i++){
    for(int j=1;j<=gr;j++){
    cout<<setw(3)<<a[i][j];
    }
    cout<<endl;
    }
    return 0;
    }
    

    信息

    ID
    187
    时间
    1000ms
    内存
    16MiB
    难度
    2
    标签
    递交数
    50
    已通过
    31
    上传者