我一次性AC这道题,用时30分钟。
#include<iostream>
using namespace std;
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
int n;
long long sz=1,lj=1,csz=0;
while(cin >> n,n)
{
sz=1;
lj=1;
for(int i=0;i<n;i++)
{
if(sz!=1)
{
sz=csz;
lj=csz;
}
for(int j=0;j<n;j++)
{
cout << sz << " ";
if(j==1)
{
csz=sz;
}
if(j!=n-1)
{
sz+=lj;
lj*=2;
}
}
cout << '\n';
}
cout << '\n';
}
// fclose(stdin);
// fclose(stdout);
return 0;
}