题解 1171: 蟠桃记

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

筛选

【蟠桃记】-题解(C语言代码)AC代码值得推荐

摘要:喜欢西游记的同学肯定都知道悟空偷吃蟠桃的故事,你们一定都觉得这猴子太闹腾了,其实你们是有所不知:悟空是在研究一个数学问题! 什么问题?他研究的问题是蟠桃一共有多少个! 不过,到最后,他还是没能……

【蟠桃记】-题解(C语言代码)

摘要: **原题链接:**[蟠桃记](https://www.dotcpp.com/oj/problem1171.html "蟠桃记") ## **解题思路:** 1.首先了解到这是一个纯数学……

【蟠桃记】 (C++代码)

摘要:解题思路:逆序求,注意最后一天还没有开始吃注意事项:参考代码:#include <iostream> #include <cstdlib> #include <cstring> #include……

【蟠桃记】 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>int main(){ using namespace std; int n,i,sum=1; while(cin.eof()!=1)……

【蟠桃记】 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; float fun2(float n) { return n - n / 2 -……

【蟠桃记】 (C语言代码)

摘要:解题思路:逆推回去从最后一天开始  (sum+1)*2注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,sum=1,n; whi……

【蟠桃记】 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……