#22982: __正解


ce5324 (伃)


#include <iostream> 

using namespace std;

int main()

{

int a;

cin>>a;

for(int i=1;i<=a;i++)

cout<<string(i,'*')<<endl;

}

以上是正解,ac的

#22986: Re:正解


5487 (5487)


#include  

using namespace std;

int main()

{

int a;

cin>>a;

for(int i=1;i<=a;i++)

cout<<string(i,'*')<<endl;

}

以上是正解,ac的

不要講答案,讓別人自己挑戰