题解 1171: 蟠桃记

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

筛选

蟠桃记——题解

摘要:```c++ #include using namespace std; int p(int x){ int y=(x+1)*2; return y; } int ma……

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

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

1171: 蟠桃记

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

编写题解 1171: 蟠桃记

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

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

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

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

摘要:解题思路:构造函数注意事项:参考代码:#include<iostream>using namespace std;int lsum(int n){ if (n == 1) { return 1; }……