题解 1171: 蟠桃记

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

筛选

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++#includeusingnamespacestd;intp(intx){inty=(x+1)*2;returny;}intmain(){//设y为第s天的蟠桃数,x为s-1天的蟠桃数//则有y=(x+1)*2//最后一天只有1只intn,

Hisipfysta-1171-蟠桃记(C++代码)

解题思路:```math\begin{cases}a_1=1\\a_2=2(a_1+1)=4\\a_3=2(a_2+1)=10\\\cdots\\a_n=(a_{n-1}+1)\\\end{cases}```代码如下:```cpp#includeusingnamespacestd;inta_(intn

蟠桃记-题解(C++代码)

摘要:解题思路:找规律来推断通式注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d……

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){ ……

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

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