Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55237 | yuboyuan | 画矩形 | C++ | 解答错误 | 1 MS | 256 KB | 560 | 2024-11-03 20:01:23 |
#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<=n;i++) { for(int j=1;j<=m;j++) cout<<a; cout<<endl; } } else { for(int i=1;i<=m;i++) cout<<a; cout<<endl; for(int i=1;i<=n-2;i++) { cout<<a; for(int j=1;j<=m-2;j++) cout<<" "; cout<<a<<endl; } for(int i=1;i<=m;i++) cout<<a; } return 0; }