| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147886 | 于墨轩 | 04打印三角形 | C++ | Accepted | 0 MS | 260 KB | 243 | 2026-02-08 22:57:26 |
#include <iostream> using namespace std; int main() { for (int row = 1; row <= 5; ++row) { for (int col = 0; col < row; ++col) { cout << '%'; } cout << endl; } return 0; }