#include <iostream>
using namespace std;
int main()
{
int a=1,b=1;
for(a=1;a<=6;a+=1)
{
for(b=1;b<=a;b+=1)
cout<<"*";
cout<<endl;
}
cout << "Hello world!" << endl;
return 0;
}
using namespace std;
int main()
{
int a=1,b=1;
for(a=1;a<=6;a+=1)
{
for(b=1;b<=a;b+=1)
cout<<"*";
cout<<endl;
}
cout << "Hello world!" << endl;
return 0;
}
1万+

被折叠的 条评论
为什么被折叠?



