题解 2822: 求分数序列和

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

筛选

题解 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 c=0,sum=0,a=3,b=2,c1=2,y=0; cin……

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

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

求分数序列和

摘要:解题思路:利用for循环注意事项:分子分母每一次循环都要变化,要加一个中间变量存储!(自己在这里卡了一会儿)参考代码:#include<stdio.h>int main(){    int n;   ……

求分数序列和题解

摘要:解题思路:#include<bits/stdc++.h>#include<iomanip>using namespace std;int main(){   int n;   double a=1.0……

求分数序列和

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

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, i;    float p = 1, q = 2,sum=2.0,temp;    scan……

求分数序列和

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

2822: 求分数序列和

摘要:解题思路:注意事项:参考代码:我写的:n = int(input()) q = 2; p = 1; a = 0 for i in range(0,n):     a = a + q / p  ……