题解 1171: 蟠桃记

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

筛选

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

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

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

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

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

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

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

摘要:解题思路:注意事项:参考代码://递归解决#include<stdio.h>int find_peach(int n);int main(){ int n,m; //第n天桃子只剩一个 while(……