Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
349677 | 胡珂 | 【C3-3】字符图形3-平行四边形 | C++ | Accepted | 100 | 1 MS | 252 KB | 314 | 2025-09-15 20:07:11 |
#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; }