提交时间:2024-11-01 14:30:57
运行 ID: 54858
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i = n; i >= 1; i--){ for(int j = 1; j <= i; j++){ cout << "* "; } cout << endl; } return 0; }