题解 1020: [编程入门]猴子吃桃的问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

猴子吃桃的问题

摘要:解题思路:逆推。从最后一天的1个桃子开始,每次根据(前一天剩下的桃子数+1)×2的公式计算前一天剩下的桃子数,循环结束后得到第一天摘的桃子数。注意事项:参考代码:#include<s……

萌新C语言:for

摘要:#include<stdio.h>intmain(){intm=1,n;scanf("%d",&n);for(inti=1;i<n;i++){m=(m+1……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;inti,a,b=1;&nbsp;&nbsp;s……

猴子吃桃的问题python

摘要:解题思路:注意事项:参考代码:n=int(input())num=1foriinrange(1,n):&nbsp;&nbsp;num=2*(num+1)print(num)……

猴子吃桃的问题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){intn,s=1;cin>>n;for(in……

猴子吃桃的问题

摘要:解题思路:倒退回去算,思路为:&nbsp;&nbsp;&nbsp;&nbsp;现在桃子数量&nbsp;=&nbsp;(现在桃子数量&nbsp;+……