Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
3343 hxx2008 写个“2” C++ 输出格式错误 0 MS 244 KB 337 2023-01-01 15:44:44

Tests(0/1):


#include<bits/stdc++.h> using namespace std; main(){ int n;cin>>n; for(int i=1;i<=n;i++){ cout<<'*'; } cout<<endl; for(int i=2;i<=n-1;i++){ for(int j=1;j<=n-i;j++){ cout<<' '; } cout<<'*'<<endl; } for(int i=1;i<=n;i++){ cout<<'*'; } }


测评信息: