0
已解决
李源徽
新手光能
新手光能
0
已采纳
梁锦程
高级光能
高级光能
for(int i=1;i<=7;i++)//7行
{
for(int j=1;j<=i;j++)//第1行打1个*,第2行打2个*...第7行打7个*
cout<<'*';
cout<<endl;//换行
}
0
0
王子轩
新手光能
新手光能
cout<<"*\n"; cout<<"**\n"; cout<<"***\n"; cout<<"****\n"; cout<<"*****\n"; cout<<"******\n"; cout<<"*******\n";
0
0
0
王源松
新手光能
新手光能
{
for (int i=1;i<=7;i++)
{
for (int j=1;j<=i;j++)cout<<'*';
cout<<endl;
}
}
0
时梓繁
修练者
修练者
int a; cout<<"*"<<endl; cout<<"**"<<endl; cout<<"***"<<endl; cout<<"****"<<endl; cout<<"*****"<<endl; cout<<"******"<<endl; cout<<"*******"<<endl; return 0; }
0