mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
11 lines
181 B
C++
11 lines
181 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main(){
|
|
cout <<"* "<<endl;
|
|
cout <<"** "<<endl;
|
|
cout <<"*** "<<endl;
|
|
cout <<"**** "<<endl;
|
|
cout <<"*****"<<endl;
|
|
return 0;
|
|
}
|