题解

陈未一  •  3个月前


include <bits/stdc++.h>

using namespace std; int main(){

int n = 1;
for(int i = 9; i >= 1; i--){
	n = (n + 1) * 2;
}
cout << n << endl;
return 0;

}


评论: