| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 142279 | 夏梓瑞 | 年龄问题 | C++ | Accepted | 0 MS | 260 KB | 406 | 2026-01-03 17:25:43 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; void a(int x,int y){ x+=2; y+=1; if(y!=5) a(x,y); else cout<<x; } int main(){ int x=10,y=1; a(x,y); return 0; }