Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
55238 yuboyuan 画矩形 C++ 通过 1 MS 260 KB 560 2024-11-03 20:03:24

Tests(2/2):


#include<iostream> using namespace std; int main() { int m,n; char a; bool b; cin>>m>>n>>a>>b; if(b) { for(int i=1;i<=m;i++) { for(int j=1;j<=n;j++) cout<<a; cout<<endl; } } else { for(int i=1;i<=n;i++) cout<<a; cout<<endl; for(int i=1;i<=m-2;i++) { cout<<a; for(int j=1;j<=n-2;j++) cout<<" "; cout<<a<<endl; } for(int i=1;i<=n;i++) cout<<a; } return 0; }


测评信息: