题解 1171: 蟠桃记

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

筛选

稍微认真解释一下吧,我觉得前辈们写的挺好,但我再详细分析解释一下吧,我再熟悉熟悉问题

摘要:解题思路:   题目分析过程【 我这题卡了好久(捂脸),然后看了大神的题解我才知道,原来我题目分析理解错了(捂脸)】【当你有解题思路的时候,而且你肯定你的解题思路没问题,那你就应该要怀疑你题目意思是不……

1171蟠桃记(两个while循环)

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

题目 1171: 蟠桃记解答

摘要:解题思路:a[n]=2*(a[n]+1)注意事项:别忘了if(n==1) result=1;这两行!参考代码:#includeusing namespace std; int f(int n){ ……

蟠桃记——计算原来的桃子数

摘要:解题思路:逆向思维注意事项:参考代码:while True:    try:        n = int(input())        s = 1        for i in range(n-……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a, sum, j; sum = 1, j = 0; while (scanf("%……

1171: 蟠桃记

摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { ……

蟠桃记(简单C++倒推)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int t,n,a[88]={1},i;   ……

C++超级简单的基础题解

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

逆向思维求解(简洁易懂)

摘要:解题思路:首先设开始时有x个桃,根据题意,以后每天吃一半多一个有x = x / 2 - 1,则输出部分就可以写为x = 2 * (x + 1)注意事项:多个输入输出时在输入位置,要注意处理文件末尾参考……