【蟠桃记】 简单易懂 摘要:解题思路:注意事项:找出关系:前一天的数目=(后一天数目+1)*2;采用循环,注意循环次数参考代码#include<stdio.h>int main(){ int N,s,t; while(s…… 题解列表 2018年01月31日 0 点赞 0 评论 757 浏览 评分:0.0
稍微认真解释一下吧,我觉得前辈们写的挺好,但我再详细分析解释一下吧,我再熟悉熟悉问题 摘要:解题思路: 题目分析过程【 我这题卡了好久(捂脸),然后看了大神的题解我才知道,原来我题目分析理解错了(捂脸)】【当你有解题思路的时候,而且你肯定你的解题思路没问题,那你就应该要怀疑你题目意思是不…… 题解列表 2024年12月01日 0 点赞 0 评论 94 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:解题思路:本来是用1解答的,参考别人的解题思路后觉得2更喜欢所以一起发了。注意事项:参考代码:1:#include<stdio.h>int main(){ int n,i,t=1; while(sca…… 题解列表 2017年11月27日 0 点赞 0 评论 919 浏览 评分:0.0
蟠桃记-题解(C++代码) 摘要:解题思路:找规律来推断通式注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d…… 题解列表 2020年12月01日 0 点赞 0 评论 281 浏览 评分:0.0
【蟠桃记】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; float fun2(float n) { return n - n / 2 -…… 题解列表 2019年04月14日 0 点赞 0 评论 355 浏览 评分:0.0
蟠桃记——计算原来的桃子数 摘要:解题思路:逆向思维注意事项:参考代码:while True: try: n = int(input()) s = 1 for i in range(n-…… 题解列表 2023年03月26日 0 点赞 0 评论 105 浏览 评分:0.0
题解 1171: 蟠桃记(Java) 摘要: import java.util.Scanner; public class Main { public static void main(String…… 题解列表 2021年02月25日 0 点赞 0 评论 254 浏览 评分:0.0
编写题解 1171: 蟠桃记 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) ls=[1] for i in&nb 题解列表 2022年02月17日 0 点赞 0 评论 134 浏览 评分:0.0
蟠桃记-题解(C++代码) 摘要: #include using namespace std; int f(int m) { if(m==1) return 1; else { return (2*f(…… 题解列表 2020年03月10日 0 点赞 0 评论 357 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:解题思路:1.本题其实没有难度,倒推就行。2.每次多吃一个,就先加一,然后再乘以2就是上次吃的桃的个数。参考代码:#include<stdio.h> int judge(int n);//定义计算桃…… 题解列表 2017年08月04日 12 点赞 1 评论 2295 浏览 评分:0.0