Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
349656 | 胡珂 | 【C3-3】字符图形3-平行四边形 | C++ | Accepted | 100 | 0 MS | 248 KB | 314 | 2025-09-15 20:06:47 |
#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 = 0; k < n; k++) { cout << "*"; } cout << endl; } return 0; }