Run ID:103651
提交时间:2024-12-29 14:36:54
#include<bits/stdc++.h> using namespace std; int f(int n){ if(n==10){ return 1; }else{ return f(n+1)*2; } } int main() { cout<<f(1); return 0; }