【蟠桃记】-题解(C语言代码)(13行) 摘要: **可以经过观察发现后一天的数量等于前一天的数量加一在乘2,所以通过数组保存每天的数量。** ## 代码 ```c #include int main() { int n,a…… 题解列表 2019年12月02日 0 点赞 1 评论 594 浏览 评分:9.9
【蟠桃记】-题解(C语言代码)AC代码值得推荐 摘要:喜欢西游记的同学肯定都知道悟空偷吃蟠桃的故事,你们一定都觉得这猴子太闹腾了,其实你们是有所不知:悟空是在研究一个数学问题! 什么问题?他研究的问题是蟠桃一共有多少个! 不过,到最后,他还是没能…… 题解列表 2019年11月27日 0 点赞 0 评论 607 浏览 评分:6.0
【蟠桃记】-题解(C语言代码) 摘要: **原题链接:**[蟠桃记](https://www.dotcpp.com/oj/problem1171.html "蟠桃记") ## **解题思路:** 1.首先了解到这是一个纯数学…… 题解列表 2019年06月25日 1 点赞 1 评论 1550 浏览 评分:8.7
【蟠桃记】 (C++代码) 摘要:解题思路:逆序求,注意最后一天还没有开始吃注意事项:参考代码:#include <iostream> #include <cstdlib> #include <cstring> #include…… 题解列表 2019年05月09日 0 点赞 0 评论 450 浏览 评分:0.0
【蟠桃记】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){ using namespace std; int n,i,sum=1; while(cin.eof()!=1)…… 题解列表 2019年04月17日 0 点赞 0 评论 429 浏览 评分:0.0
【蟠桃记】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; float fun2(float n) { return n - n / 2 -…… 题解列表 2019年04月14日 0 点赞 0 评论 355 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:解题思路:逆推回去从最后一天开始 (sum+1)*2注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,sum=1,n; whi…… 题解列表 2019年03月14日 1 点赞 0 评论 428 浏览 评分:0.0
【蟠桃记】 (C语言代码)<简单明了> 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,k; while(~scanf("%d\n",&n)) { k=1; for(i=1;i<n…… 题解列表 2019年03月12日 0 点赞 0 评论 1139 浏览 评分:6.0
【蟠桃记】 (C++代码)一点都不正经の计算 摘要:解题思路: 常规思路,直接写的解嘛。参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.ti…… 题解列表 2019年02月12日 1 点赞 0 评论 620 浏览 评分:0.0
【蟠桃记】 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年11月16日 0 点赞 0 评论 341 浏览 评分:0.0