Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
37171 | chenyanda | 字符三角形 | C++ | Accepted | 0 MS | 244 KB | 174 | 2024-01-19 15:33:39 |
#include<iostream> using namespace std; int main() { char k; cin>>k; cout<<" "<<k<<endl; cout<<" "<<k<<k<<k<<endl; cout<<k<<k<<k<<k<<k<<endl; return 0; }