提交时间:2024-11-01 14:28:46

运行 ID: 54849

#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; }