Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137242 小徐老师 年龄问题 C++ Accepted 1 MS 260 KB 189 2025-11-16 21:09:32

Tests(1/1):


Code:

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