| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 441459 | 方相宜 | 【C1-T】输出字符菱形 | C++ | 通过 | 100 | 1 MS | 252 KB | 220 | 2026-05-21 20:34:38 |
#include<bits/stdc++.h> using namespace std; main(){ char c; cin>>c; cout<<" "<<c<<endl; cout<<" "<<c<<c<<c<<endl; cout<<c<<c<<c<<c<<c<<endl; cout<<" "<<c<<c<<c<<endl; cout<<" "<<c<<endl; return 0; }