Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
54889 | 该账号已封禁 | 图形显示 | C++ | Accepted | 0 MS | 244 KB | 227 | 2024-11-01 14:51:34 |
#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; }