题解 2822: 求分数序列和

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

筛选

求分数序列和(辗转相除法?)

摘要:注意事项: 规律:p/q,p+q/p ……,这么一个规律,用辗转相除法就很好做了,第一次接触这个方法,还是在求最大公约数和最小公倍数,不记得了的xd,可以回去看看 参考代码: ```c #i……

2822: 求分数序列和

摘要:``` #include using namespace std; int main(){ int n; double c=0,sum=0,a=3,b=2,c1=2,y=0; cin……

题解 2822: 求分数序列和

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double a=1.0,b=2.0,c=0;……

2822: 求分数序列和

摘要:``` #include using namespace std; int main(){ int n; double a=1.0,b=2.0,c=0,sum=2,s; cin>>n……

2822: 求分数序列和

摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std; double molecule(int n) {     if(n==1)       ……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   public static void main(String[] args)    ……

编写题解 2822: 求分数序列和

摘要:解题思路:注意事项:参考代码:n=int(input())sum=0#分数之和p_list=[1]q_list=[2]for i in range(n):        q_list.append(p……

求分数序列和

摘要:解题思路:斐波那契数列n-2项/n-1项目注意事项:输出格式参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin……

2822: 求分数序列和

摘要:参考代码:n = int(input()) p, q = 1, 2 sum = 0 for _ in range(n):     sum += q / p     flag = q    ……

求分数序列和

摘要:解题思路:先通过给出的例子,找出规律,就比较好解决了注意事项:参考代码:……