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