Files
python/TangDou/KaoShi/剪绳子.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

13 lines
237 B
C++

#include <bits/stdc++.h>
using namespace std;
const int N = 30;
int a[N] = {2};
int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) a[i] = a[i - 1] + pow(2, i - 1);
printf("%d", a[n]);
return 0;
}