旧物有情 # 模拟求最大公约数和最小公倍数 摘要:``` #include using namespace std; int main(){ int n,m; cin >> n >> m; …… 题解列表 2024年10月10日 1 点赞 0 评论 123 浏览 评分:9.9
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main(){ int t = 1 ;//取余计算的余数,赋值为1是为了方便进…… 题解列表 2024年09月23日 0 点赞 5 评论 83 浏览 评分:8.5
1011: [编程入门]最大公约数与最小公倍数 摘要:参考代码:#include<bits/stdc++.h>using namespace std;typedef int ll;ll n,m;int main(){ cin>>n>>m; int mx=…… 题解列表 2024年08月24日 0 点赞 0 评论 78 浏览 评分:9.9
辗转相除最终归纳! 摘要:1.c++写#include<bits/stdc++.h> using namespace std; int _gcd(int a,int b) { while(b!=0)//可以简写…… 题解列表 2024年08月08日 0 点赞 0 评论 49 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int min(int a,int b){ return a>b?b:a;}int ma…… 题解列表 2024年08月07日 0 点赞 0 评论 76 浏览 评分:0.0
输入两个正整数m和n,求其最大公约数和最小公倍数。 摘要:解题思路:接受输入,先求最大公约数,最后求公倍数,然后输出注意事项:按顺序求解即可参考代码:#include<iostream> #include <cstring> #include <math…… 题解列表 2024年06月25日 0 点赞 0 评论 109 浏览 评分:9.9
适合新手的代码--利用循环和判断是寻找 摘要:```cpp #include using namespace std; int main(){ int a,b; cin>>a>>b; //最大公约数:从输入数字最小的开始,到1结…… 题解列表 2024年03月29日 1 点赞 1 评论 106 浏览 评分:9.9
c++辗转相除法 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int zhx(int a, int b) { return (a % b == 0…… 题解列表 2024年02月06日 0 点赞 0 评论 41 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:###思路 辗转相除法求`gcd`,然后`lcm=a*b/gcd`。 ###注意事项 a*b可能爆。 ###代码 ```cpp #include using namespace std;…… 题解列表 2024年02月04日 0 点赞 0 评论 83 浏览 评分:9.9
最大公约数与最小公倍数 【更相减损法】 摘要:解题思路:更相减损法 假设x y 两个数 最大公约数可以这样计算。以较大的数减较小的数,接着把所得的差与较小的数比较,并以大数减小数。继续这个操作,直到它们两个数相等为止。则相等的两个数就是所求…… 题解列表 2024年01月17日 0 点赞 0 评论 66 浏览 评分:0.0