Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
54848 zhangsicun 写个“2” C++ 通过 1 MS 244 KB 375 2024-11-01 14:28:08

Tests(1/1):


#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; }


测评信息: