题目描述
https://www.acwing.com/problem/content/description/756/
样例
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
int n;
while(cin >> n,n)
{
int m[n][n];
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
int a=abs(i-j);
cout << a+1 << " " ;
}
cout << endl;
}
cout << endl;
}
return 0;
}
算法1
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla
算法2
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla