Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54859 | zhangweiran | 写个“2” | C++ | 解答错误 | 0 MS | 240 KB | 227 | 2024-11-01 14:31:13 |
#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; }