Loading... ``` #include <bits/stdc++.h> using namespace std; int main(){ int N,a[40][40],x,y; cin>>N; x=1,y=(N+1)/2; for(int i=1;i<=N*N;i++){ a[x][y]=i; if(!a[(x-2+N)%N+1][y%N+1])//判断下一个位置是否为空 { x=(x-2+N)%N+1; y=y%N+1; }else{ x=x%N+1;//不为空就填在正下方 } } //输出 for(int i=1;i<=N;i++){ for(int j=1;j<=N;j++){ cout<<a[i][j]<<' '; } cout<<endl; } return 0; } ``` 最后修改:2024 年 03 月 19 日 © 允许规范转载 赞 1 如果觉得我的文章对你有用,请随意赞赏