Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
3834 | 龚施宇 | 蛇形矩阵 | C++ | 通过 | 100 | 0 MS | 256 KB | 393 | 2019-12-22 18:46:25 |
#include<iostream> using namespace std; int main(){ int n,a[11][11],k=1; cin>>n; for(int i=1;i<=n;i++){ if(i%2==1){ for(int j=1;j<=n;j++){ a[i][j]=k++; } }else{ for(int j=n;j>=1;j--){ a[i][j]=k++; } } } for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cout<<a[i][j]; if(j!=n) cout<<" "; } if(i!=n) cout<<endl; } return 0; }