Run ID:155377
提交时间:2026-06-07 11:03:04
#include<bits/stdc++.h> using namespace std; int output(int x){ if(x==1) return 1; else { return output(x-1)*2; } } int main (){ cout<<output(10); return 0; }