Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
33010 | teacher_lu | 字符三角形 | C++ | Accepted | 0 MS | 244 KB | 213 | 2023-12-04 19:44:52 |
#include <bits/stdc++.h> using namespace std; int main(){ char c; cin >> c; cout << " " << c << endl; cout << " " << c << c << c << endl; cout << c << c << c << c << c << endl; return 0; }