蟠桃记-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[]…… 题解列表 2021年01月10日 0 点赞 0 评论 283 浏览 评分:9.9
【蟠桃记】-题解(C语言代码)(13行) 摘要: **可以经过观察发现后一天的数量等于前一天的数量加一在乘2,所以通过数组保存每天的数量。** ## 代码 ```c #include int main() { int n,a…… 题解列表 2019年12月02日 0 点赞 1 评论 594 浏览 评分:9.9
【蟠桃记】 (C语言代码)递归法和归纳法 摘要:两种方式求解,递归和归纳,习惯用哪种都可以。参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> //假如在第n…… 题解列表 2018年04月15日 0 点赞 0 评论 1175 浏览 评分:9.9
Hisipfysta-1171-蟠桃记(C++代码) 摘要:解题思路: ```math \begin{cases} a_1=1\\ a_2=2(a_1+1)=4\\ a_3=2(a_2+1)=10\\ \cdots\\ a_n=(a_{n-1}+…… 题解列表 2022年02月05日 0 点赞 0 评论 236 浏览 评分:9.9
反差法求解猴子吃桃问题——Python 摘要:解题思路:注意事项:参考代码:def caculate_peach_number(n): left_peaches = 1 day = n while day > 1: …… 题解列表 2023年07月08日 0 点赞 0 评论 154 浏览 评分:9.9
编写题解 1171: 蟠桃记 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int num(int a); int main(){ int a,b; while(scanf("%d",&a)!=EO…… 题解列表 2021年11月09日 0 点赞 0 评论 177 浏览 评分:9.9
优质题解 Manchester-【蟠桃记】 摘要:解题思路:1.假设在第3天,剩余x=1个桃子;(等于前一天的除以2再-1)2.则在第2天剩余x=(1+1)*2=4个桃子;3.则在第1天剩余x=(1+4)*2=10个桃子;则根据归纳法得到:每一天剩余…… 题解列表 2018年01月05日 15 点赞 0 评论 2343 浏览 评分:9.9
蟠桃记——题解 摘要:```c++ #include using namespace std; int p(int x){ int y=(x+1)*2; return y; } int ma…… 题解列表 2022年01月28日 0 点赞 0 评论 273 浏览 评分:9.9
1171: 蟠桃记 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2022年11月18日 0 点赞 0 评论 142 浏览 评分:9.9
【蟠桃记】-题解(C++代码) 简单数学推导 摘要:> 设倒数第二个为x,则有**x/2-1=1** 所以**x=(1+1)*2** 同理,倒数第三个既是**(x+1)*2** 如此递推,到第一个 ------------ #####…… 题解列表 2019年12月30日 0 点赞 0 评论 633 浏览 评分:9.9