编写题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int k,i=1;double s=0;cin>>k;whi…… 题解列表 2024年05月27日 0 点赞 0 评论 62 浏览 评分:0.0
题解:2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i, j; double sum; sum = 0; scanf("%d…… 题解列表 2022年12月26日 0 点赞 0 评论 98 浏览 评分:0.0
编写题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k = 0; scanf("%d", &k); double sn = 0; int i = 0; w…… 题解列表 2024年02月16日 0 点赞 0 评论 97 浏览 评分:0.0
2817: 级数求和 摘要:``` #include using namespace std; int main(){ int k; double sn=0; cin>>k; for( int i=1; ;…… 题解列表 2023年11月13日 0 点赞 0 评论 67 浏览 评分:0.0
级数求和....... 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,i; double s=.0 ; scanf("%d",&k) ; for(i=1;;i++){ …… 题解列表 2023年02月13日 0 点赞 0 评论 91 浏览 评分:0.0
死在精度上面 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,i=1; double sn=0.0;\\float类型超过了精度,答案输出错误 scanf("…… 题解列表 2023年04月18日 0 点赞 0 评论 78 浏览 评分:0.0
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; int pos=0; …… 题解列表 2024年01月02日 0 点赞 0 评论 65 浏览 评分:0.0
级数求和(注意审题) 摘要:解题思路:注意事项:没啥好讲的,注意题目输出的是int类型就行参考代码:#include<bits/stdc++.h>using namespace std;int main(){ doubl…… 题解列表 2023年03月23日 0 点赞 0 评论 129 浏览 评分:0.0
题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ short k; double sn=0; …… 题解列表 2024年01月15日 0 点赞 0 评论 101 浏览 评分:0.0