4
01020304
05060708
09101112
13141516
01
0203
040506
07080910
--------------------------------
Process exited after 2.442 seconds with return value 0
请按任意键继续. . .
#include<iostream>
using namespace std;
int main()
{
int n,p=1,cns=1;
cin>>n;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(cns<10)cout<<'0';
cout<<cns;
cns++;
}
cout<<endl;
}
cout<<" "<<endl;
cns=1;
for(int m=1;m<=n;m++)
{
for(int z=2*(n-1);z>=m;z--)//应该使这里的z--的问题,每一行的空格是比上一行少两个吧应该,可是换成z-=2输出的三角形就更不对了
{
cout<<" ";
}
for(int k=1;k<=p;k++)
{
if(cns<10)cout<<'0';
cout<<cns;
cns++;
}
cout<<endl;
p++;
}
return 0;
}