怎么输出的不是三角
#includes<iostream>using namespace std;
int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<5;j++)
}
cout<<"*"<<endl;
system("pause");
return 0;
}
2009-10-20 22:13

2009-10-20 22:35
2009-10-20 23:19
2009-10-21 14:15
2009-10-21 14:16
乱七八糟的代码
2009-10-21 15:20
2009-10-21 17:23
2009-10-22 09:28