Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54861 | zhangweiran | 写个“2” | C++ | 通过 | 0 MS | 252 KB | 375 | 2024-11-01 14:33:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i = 1; i <= n; i++){ cout << "*"; } cout << endl; for(int i = n; i > 2; i--){ for(int j = 2; j < i; j++){ cout << " "; } cout << "*" << endl; } for(int i = 1; i <= n; i++){ cout << "*"; } return 0; }