Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
37274 | 奚晨瑞 | 字符三角形 | C++ | Accepted | 0 MS | 252 KB | 193 | 2024-01-19 19:38:01 |
#include<iostream> using namespace std; int main() { char c1; cin>>c1; cout<<" "<<c1<<" "<<endl; cout<<" "<<c1<<c1<<c1<<" "<<endl; cout<<c1<<c1<<c1<<c1<<c1<<endl; return 0; }