Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
349643 | 胡珂 | 【C3-T】打印平行四边形 | C++ | Presentation Error | 0 | 12 MS | 244 KB | 314 | 2025-09-15 20:03:15 |
#include <iostream> using namespace std; int main() { int n; cin >> n; for(int i = 0; i < n; i++) { for(int j = 0; j < i; j++) { cout << " "; } for(int k = n; k > 0; k--) { cout << "A"; } cout << endl; } return 0; }