感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; double p=1,q=2,s…… 题解列表 2023年07月10日 0 点赞 0 评论 91 浏览 评分:0.0
注意q和p不能放在整数型里 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; double Sn=0,q=2.0,p=1.0; scanf("%d",&n…… 题解列表 2024年11月30日 0 点赞 0 评论 56 浏览 评分:0.0
求分数序列和(辗转相除法?) 摘要:注意事项: 规律:p/q,p+q/p ……,这么一个规律,用辗转相除法就很好做了,第一次接触这个方法,还是在求最大公约数和最小公倍数,不记得了的xd,可以回去看看 参考代码: ```c #i…… 题解列表 2023年09月13日 0 点赞 0 评论 124 浏览 评分:0.0
题解 2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double a=1.0,b=2.0,c=0;…… 题解列表 2023年11月12日 0 点赞 0 评论 49 浏览 评分:0.0
求分数序列和题解 摘要:解题思路:#include<bits/stdc++.h>#include<iomanip>using namespace std;int main(){ int n; double a=1.0…… 题解列表 2023年07月11日 0 点赞 0 评论 98 浏览 评分:0.0
2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std; double molecule(int n) { if(n==1) …… 题解列表 2023年12月26日 0 点赞 0 评论 175 浏览 评分:0.0
2822: 求分数序列和 摘要:参考代码:n = int(input()) p, q = 1, 2 sum = 0 for _ in range(n): sum += q / p flag = q …… 题解列表 2024年03月18日 0 点赞 0 评论 162 浏览 评分:0.0
求分数序列和 摘要:解题思路:注意事项:参考代码:n = int(input())q = 2p = 1s = 0for i in range(n): s += q/p t = q q = p + q …… 题解列表 2024年07月31日 0 点赞 0 评论 130 浏览 评分:0.0
编写题解 2822: 求分数序列和 摘要:解题思路:注意事项:参考代码:n=int(input())sum=0#分数之和p_list=[1]q_list=[2]for i in range(n): q_list.append(p…… 题解列表 2024年03月01日 0 点赞 0 评论 122 浏览 评分:0.0
求分数序列和 摘要:解题思路:利用for循环注意事项:分子分母每一次循环都要变化,要加一个中间变量存储!(自己在这里卡了一会儿)参考代码:#include<stdio.h>int main(){ int n; …… 题解列表 2023年07月28日 0 点赞 0 评论 119 浏览 评分:0.0