题解 2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ short k; double sn=0; …… 题解列表 2024年01月15日 0 点赞 0 评论 188 浏览 评分:0.0
1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long aj; cin>>aj; …… 题解列表 2024年01月15日 0 点赞 0 评论 120 浏览 评分:6.0
题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; …… 题解列表 2024年01月15日 0 点赞 0 评论 166 浏览 评分:9.9
题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long m; cin>>m; whil…… 题解列表 2024年01月15日 0 点赞 0 评论 103 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a, b, c = 1,d = 0; c…… 题解列表 2024年01月15日 0 点赞 0 评论 161 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long m,n,r=0,p=0; cin>>…… 题解列表 2024年01月15日 0 点赞 0 评论 141 浏览 评分:0.0
题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,n; cin>>m>>…… 题解列表 2024年01月15日 0 点赞 0 评论 124 浏览 评分:0.0
题解 1147: C语言训练-角谷猜想 摘要:解题思路:没什么难想的。注意事项:在写判断奇数时要再写个不等于1,不然会无限重复。参考代码:#include <bits/stdc++.h>using namespace std;int main()…… 题解列表 2024年01月15日 0 点赞 0 评论 156 浏览 评分:9.9
1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<…… 题解列表 2024年01月14日 0 点赞 0 评论 461 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:先算最大公倍数(或最小公倍数)然后用(n*m)/最大公约数(或最小公倍数)注意事项:n*m=最大公约数*最小公倍数参考代码:#include <iostream>using namespac…… 题解列表 2024年01月14日 0 点赞 0 评论 121 浏览 评分:9.9