2819: 数字反转 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n, s = 0; cin >> n; while (n) …… 题解列表 2024年01月15日 0 点赞 3 评论 134 浏览 评分:9.9
如有错误请指出,谢谢 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月15日 0 点赞 0 评论 173 浏览 评分:0.0
如果有什么错误,请指出谢谢 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2024年01月15日 0 点赞 0 评论 175 浏览 评分:0.0
3013: 求小数的某一位 摘要:解题思路:注意事项:这里的cout要在外面写a的值可以改变参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long lo…… 题解列表 2024年01月15日 0 点赞 0 评论 223 浏览 评分:9.9
222222222222222222222222222222222222 摘要:解题思路:注意事项:参考代码:编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 …… 题解列表 2024年01月15日 0 点赞 0 评论 274 浏览 评分:0.0
题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; fo…… 题解列表 2024年01月15日 0 点赞 0 评论 198 浏览 评分:9.9
最大公约数与最小公倍数 1011 摘要:解题思路:#include<iostream>#include<algorithm>using namespace std;int main(){int a,b;cin>>a>>b;cout<<__g…… 题解列表 2024年01月15日 0 点赞 0 评论 173 浏览 评分:9.9
题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,n,gcd=0; cin>…… 题解列表 2024年01月15日 0 点赞 0 评论 137 浏览 评分:9.9
[编程入门]迭代法求平方根[C语言] 摘要:解题思路: 欲求x的平方根, 要先假设一个x的初值,可以让x=1.0也可以让x=n,然后根据迭代公式 X(n+1)=(Xn+a/Xn)/2, 算出X1,再将X1代公式的右边算出下一个x的值等…… 题解列表 2024年01月15日 0 点赞 0 评论 150 浏览 评分:0.0
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long k; double s=0…… 题解列表 2024年01月15日 0 点赞 1 评论 259 浏览 评分:9.9