输入整数 NN,输出一个 NN 阶的二维数组。
数组的形式参照样例
输入样例:
1
2
3
4
5
0
1
1 2
2 1
1 2 3
2 1 2
3 2 1
1 2 3 4
2 1 2 3
3 2 1 2
4 3 2 1
1 2 3 4 5
2 1 2 3 4
3 2 1 2 3
4 3 2 1 2
5 4 3 2 1
#include<iostream>
#include<cmath>
using namespace std;
#define N 101
int main(){
int a[N][N];
int x;
while(cin>>x,x){
for(int i=0;i<x;i++){
for(int j=0;j<x;j++){
cout<<(abs(i-j)+1)<<" ";
}
cout<<endl;
}
cout<<endl;
}
return 0;
}
找规律