Run ID:128708
提交时间:2025-08-19 13:55:29
#include<bits/stdc++.h> using namespace std; int tz(int day) { if(day == 10) { return 1; } else { return (tz(day + 1) + 1) * 2; } } int main() { cout << tz(1); return 0; }