题解 2817: 级数求和

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

筛选

Java级数求和

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

题解 2817: 级数求和

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

级数求和(光头强买冰箱)

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

2817: 级数求和

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int k;    double s=0;    cin>>k;    ……

jishuqiuhegggggggg

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int K;    cin>>K;    double……

2817: 级数求和

摘要:``` #include using namespace std; int main(){ int k; double sn=0; cin>>k; for( int i=1; ;……

一个while循环

摘要:解题思路:一个while循环注意事项:y<=k参考代码:#include<stdio.h>int main(){    double a,b,y;    int k; scanf("%d",&k); ……

2817: 级数求和

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int n;     int pos=0; ……