| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134336 | 陈华仁星 | 年龄问题 | C++ | Wrong Answer | 1 MS | 268 KB | 207 | 2025-10-26 21:28:55 |
#include <iostream> #include <cmath> using namespace std; void di_gui(int x) { if(x<20) { x+=2; cout<< x<< endl; di_gui(x); } } int main() { int x=8; di_gui(x); return 0; }
------Input------
0
------Answer-----
18
------Your output-----
10 12 14 16 18 20