我是新人,请多指点!
#include "iostream.h"void main()
{
for(int x=0;x<=4;x++)
{
for(int y=7;y>x;y--)
cout << " ";
for(int z=1;z<=2*x+1;z++)
cout <<"*";
cout<<endl;
}
for(x=0;x<=4;x++)
{
for(int y=0;y<=x+3;y++)
cout<< " ";
for(int z=7;z>=2*x+1;z--)
cout<<"*";
cout<<endl;
}
}
有没有这样编行吗?为什么在下面的for里还要声明一次y,z?