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
【蟠桃记】 (Java代码)简化给我留言 摘要:解题思路:注意事项:参考代码:import java.util.*;public class The171 {public static void main(String[]args){ Scanne…… 题解列表 2018年05月09日 1 点赞 0 评论 674 浏览 评分: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
反差法求解猴子吃桃问题——Python 摘要:解题思路:注意事项:参考代码:def caculate_peach_number(n): left_peaches = 1 day = n while day > 1: …… 题解列表 2023年07月08日 0 点赞 0 评论 154 浏览 评分:9.9
【蟠桃记】-题解(C++代码) 简单数学推导 摘要:> 设倒数第二个为x,则有**x/2-1=1** 所以**x=(1+1)*2** 同理,倒数第三个既是**(x+1)*2** 如此递推,到第一个 ------------ #####…… 题解列表 2019年12月30日 0 点赞 0 评论 633 浏览 评分:9.9
1171: 蟠桃记 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2022年11月18日 0 点赞 0 评论 142 浏览 评分:9.9
【蟠桃记】 (C语言代码)递归法和归纳法 摘要:两种方式求解,递归和归纳,习惯用哪种都可以。参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> //假如在第n…… 题解列表 2018年04月15日 0 点赞 0 评论 1175 浏览 评分: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