Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51060 | shtest | 字符三角形 | C++ | Accepted | 0 MS | 256 KB | 186 | 2024-09-17 09:36:56 |
#include<bits/stdc++.h> using namespace std; int main() { char ch; cin>>ch; cout<<" "<<ch<<endl; cout<<" "<<ch<<ch<<ch<<endl; cout<<ch<<ch<<ch<<ch<<ch<<endl; return 0; }