猴子吃桃#include <stdio.h> int main() { int days = 10; // 总共的天数 int peaches = 1; // 第十天剩下的桃子数量 // 从第九天开始逆推,计算每天剩下的桃子数量 for (int i = days - 1; i >= 1; i--) { peaches = (peaches + 1) * 2; } printf("最初有 %d 个桃子\n", peaches); return 0; }
评论星级较低,若资源使用遇到问题可联系上传者,3个工作日内问题未解决可申请退款~