Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
7302 tangcong 画矩形 C++ 通过 1 MS 248 KB 569 2023-02-03 11:26:29

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b; char c; bool d; cin>>a>>b>>c>>d; if(d==1){ for(int i=1;i<=a;i++){ for(int j=1;j<=b;j++) cout<<c; cout<<endl; } } else{ for(int i=1;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=1;i<=b;i++) cout<<c; } return 0; }


测评信息: