| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 51266 | louhaoze | 字符三角形 | C++ | Accepted | 0 MS | 248 KB | 192 | 2024-09-20 15:45:15 |
#include<iostream> using namespace std; int main() { char x; cin>>x; cout<<" "<<" "<<x<<endl; cout<<" "<<x<<x<<x<<endl; cout<<x<<x<<x<<x<<x<<endl; return 0; }