【算法竞赛宝典】猴子吃桃 题目描述代码展示答案 题目描述 代码展示 //猴子吃桃 #include <iostream> using namespace std; int main() { int day = 9, x1, x2 = 1; while (day > 0) { x1 = (x2 + 1) * 2;//第1天的桃子数是第2的天的桃子数加1后的2倍 x2 = x1; day--; } cout << x1; //system("pause"); return 0; } 答案