Run ID:127192
提交时间:2025-07-25 15:53:11
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for ( int c = n; c >= 1; c--) { for (int i = 1; i <= n; i++) { if (i >= c) { cout << "*"; } else { cout << " "; } } cout << endl; } return 0; }