| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 444065 | 任虞昊 | 【C1-T】输出字符菱形 | C++ | 通过 | 100 | 2 MS | 256 KB | 220 | 2026-06-09 20:54:27 |
#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; }