题解 2822: 求分数序列和

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

筛选

2822: 求分数序列和

摘要:```cpp #include #include using namespace std; int main() { int n; double a=1.0,b=2.0,……

万变不离其宗——菲林数列

摘要:解题思路:      递推思路注意事项:参考代码:int main(){    int n;    double a=1.0,b=2.0,s=0;    scanf("%d",&n);    whil……

典型的递推题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n;    scanf("%d",&n);    double s……