| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134887 | 张咏灏 | 年龄问题 | C++ | Wrong Answer | 1 MS | 260 KB | 151 | 2025-11-01 17:02:18 |
#include<iostream> using namespace std; int main(){ int a=10; for(int i=0;i<5;i++){ a=a+2; } cout<<a; return 0; }
------Input------
0
------Answer-----
18
------Your output-----
20