题解 1171: 蟠桃记

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

筛选

优质题解

Manchester-【蟠桃记】

摘要:解题思路:1.假设在第3天,剩余x=1个桃子;(等于前一天的除以2再-1)2.则在第2天剩余x=(1+1)*2=4个桃子;3.则在第1天剩余x=(1+4)*2=10个桃子;则根据归纳法得到:每一天剩余……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int num(int a); int main(){ int a,b; while(scanf("%d",&a)!=EO……

蟠桃记——题解

摘要:```c++ #include using namespace std; int p(int x){ int y=(x+1)*2; return y; } int ma……

1171: 蟠桃记

摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { ……

逆向思维求解(简洁易懂)

摘要:解题思路:首先设开始时有x个桃,根据题意,以后每天吃一半多一个有x = x / 2 - 1,则输出部分就可以写为x = 2 * (x + 1)注意事项:多个输入输出时在输入位置,要注意处理文件末尾参考……

蟠桃记(简单C++倒推)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int t,n,a[88]={1},i;   ……