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