2817: 级数求和 摘要:解题思路:注意事项:参考代码:k = int(input())s = 0n = 0while k >= s: n += 1 s += 1/nprint(n)…… 题解列表 2024年07月30日 0 点赞 0 评论 96 浏览 评分:0.0
编写题解 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 评论 64 浏览 评分:0.0
2817: 级数求和 摘要:参考代码:k = int(input()) Sn = 0 number = 1 while True: Sn += 1 / number if Sn > k: …… 题解列表 2024年03月17日 0 点赞 0 评论 163 浏览 评分: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 <bits/stdc++.h>using namespace std;int main(){ long long k; double sum…… 题解列表 2024年01月17日 0 点赞 0 评论 34 浏览 评分:0.0
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long k; double s=0…… 题解列表 2024年01月15日 0 点赞 1 评论 122 浏览 评分:9.9
题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ short k; double sn=0; …… 题解列表 2024年01月15日 0 点赞 0 评论 101 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月12日 0 点赞 0 评论 91 浏览 评分:9.9
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; int pos=0; …… 题解列表 2024年01月02日 0 点赞 0 评论 65 浏览 评分:0.0