Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51623 | 张思存 | 字符三角形 | C++ | Accepted | 1 MS | 244 KB | 192 | 2024-09-22 22:05:01 |
#include<bits/stdc++.h> using namespace std; int main() { char a; cin>>a ; cout<<" "<<a<<endl; cout<<" "<<a<<a<<a<<endl; cout<<a<<a<<a<<a<<a; return 0; }