Run ID:141058

提交时间:2025-12-20 21:30:09

#include <iostream> //designed by hu 2025-10 using namespace std; int peach(int day){ if(day==10) { return 1; } int tot = peach(day+1) * 2 + 2; return tot; } int main(){ int res = peach(1); cout<<res; return 0; }