mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
20 lines
237 B
C++
20 lines
237 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
int a;
|
|
cin >>a;
|
|
for(int i=a;i>=1;i--){
|
|
for(int j=1;j<=i-1;j++){
|
|
cout <<" ";
|
|
}
|
|
for(int j=1;j<=a;j++){
|
|
cout <<"*";
|
|
}
|
|
cout <<endl;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|