Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149417 李朋秦 年龄问题 C++ Accepted 0 MS 268 KB 151 2026-03-12 17:47:29

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int sum(int x){ if(x==18){ return x; }sum(x+2); } int main(){ cout<<sum(10); return 0; }