De. • 3个月前
int main() {
int a, d, f = 1; scanf("%d", &a); while (a > 0) { d = (f + 1) * 2; f = d; a--; } printf("%d", d); return 0;
}
评论:
请先登录,才能进行评论