| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 74470 | sh25_shenpy | 画矩形 | C++ | 输出超限 | 1 MS | 236 KB | 490 | 2025-11-28 14:47:09 |
#include <bits/stdc++.h> using namespace std; int main( ){ int n; cin>>n; for(int i=1;i<=n;i++){ cout<<"****** ****** "<<" ****** ****** ****** ******"<<endl; cout<<"* *"<<" * * * * * * *"<<endl; cout<<"****** ****** "<<" * * * ****** ******"<<endl; cout<<"* * *"<<" * * * * *"<<endl; cout<<"****** ****** "<<"****** * ****** ******"<<endl; cout<<" "<<endl; } return 0; }