Run ID:103666

提交时间:2024-12-29 14:41:42

#include<bits/stdc++.h> using namespace std; int f(int n){ if(n==10){ return 1; }else{ return (f(n+1)+1)*2; } } int main() { cout<<f(1); return 0; }