| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148449 | 于墨轩 | 简单计算 | C++ | Wrong Answer | 0 MS | 264 KB | 260 | 2026-02-15 21:57:49 |
#include <iostream> using namespace std; int main() { const int n = 5; int result = 1; for (int i = 1; i <= n; ++i) { result *= i; } cout << "1×2×3×4×5的结果是:" << result << endl; return 0; }
------Input------
0
------Answer-----
120
------Your output-----
1×2×3×4×5的结果是:120