| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 83464 | sh25_huangse | 图形打印长方形 | C++ | 通过 | 0 MS | 240 KB | 197 | 2026-01-26 23:18:21 |
#include<iostream> using namespace std; int main(){ int h,s; cin>>h>>s; for(int i=0;i<h;++i){ for(int j=0;j<s;++j) cout<<"@"; cout<<'\n'; } return 0; }