Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
56600 lixinyu 写个“2” C++ 通过 0 MS 252 KB 310 2024-11-15 14:12:47

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int x=1;x<=n;x++) { cout<<"*"; } cout<<endl; for(int x=n-2;x>=1;x--) { for(int y=1;y<=x;y++) { cout<<" "; } cout<<"*"<<endl; } for(int x=1;x<=n;x++) { cout<<"*"; } return 0; }


测评信息: