连数组都省了!
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
int n;
while(cin >> n, n)
{
for(int i = 0; i < n; i ++)
{
for(int j = 0; j < n; j ++)
printf("%d ", abs(i - j)+ 1);
printf("\n");
}
printf("\n");
}
return 0;
}
厉害了
刚看到,视频里有这种想法 hh
厉害