提交时间:2019-12-15 09:20:22

运行 ID: 3282

#include<iostream> using namespace std; int main(){ short a,c=1,i,j=0; cin>>a; short b[a][a]; for(i=0;i<a;i++){ if(i%2==0){ for(j=0;j<a;j++){ b[i][j]=c++; } } else{ for(j=a-1;j>=0;j--){ b[i][j]=c++; } } } for(i=0;i<a;i++){ for(j=0;j<a;j++){ cout<<b[i][j]<<" "; } cout<<endl; } return 0; }