Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54849 | zhangsicun | 图形显示 | C++ | 通过 | 1 MS | 244 KB | 227 | 2024-11-01 14:28:46 |
#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; }