Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39849 chenyifei 画矩形 C++ 通过 1 MS 252 KB 519 2024-02-04 20:47:25

Tests(2/2):


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


测评信息: