题解来了
2023-12-16 19:13:16
发布于:广东
153阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n,x=-1,y;
const int N=1e3+1;
int a[1001][1001];
int main(){
cin>>n;
int cnt=1;
while(cnt<=n*n){
while(x+1<n and a[x+1][y]==0){
a[++x][y]=cnt++;
}
y++;
a[x][y]=cnt++;
while(x-1>=0 and a[x-1][y]==0){
a[--x][y]=cnt++;
}
y++;
a[x][y]=cnt++;
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cout<<a[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
全部评论 1
sfffffffffffffffffffffffff
2023-12-16 来自 广东
0sfffffffffffffffffffffffff
2023-12-16 来自 广东
0
有帮助,赞一个