编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,y,a,b,p; cin>>x>>y; for…… 题解列表 2022年03月25日 0 点赞 0 评论 348 浏览 评分:0.0
C语言 先暴力一个再计算找另一个 摘要: #include int main(){ int a,b; int c=0,d=0; scanf("%d %d",&a,&b); in…… 题解列表 2022年03月29日 0 点赞 0 评论 304 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int G(int a,int b){ if(b==0) return a; return G(b,a%b);}int main(){…… 题解列表 2022年04月16日 0 点赞 0 评论 376 浏览 评分:0.0
[编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ cin>>a>>b; for(int i=m…… 题解列表 2022年04月29日 0 点赞 0 评论 287 浏览 评分:0.0
C++模拟短除做的 摘要:解题思路:可以在纸上先用短除做一遍,会发现找到的最大公约数就是短除号前的那些数相乘,而最小公倍数又=m*n/最大公约数注意事项:参考代码:#include<iostream>//我是模拟短除做的usi…… 题解列表 2022年05月01日 0 点赞 0 评论 333 浏览 评分:0.0
最大公约数与最小公倍数 题解(c++懒人必用超简单) 摘要:解题思路:这题用懒人方法做就是直接用函数。呵呵。。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int ma…… 题解列表 2022年05月08日 0 点赞 0 评论 334 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:import java.io.*; /** * 找公因数:从小的那个数开始往下遍历,当两个数都可以把它整除时就是公因数。 * 找公倍数:两个数相乘再除以公因数就是公倍数。 */ …… 题解列表 2022年05月10日 0 点赞 0 评论 189 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a, b, temp; scanf("%d%d", &a, &b); int res…… 题解列表 2022年05月11日 0 点赞 0 评论 233 浏览 评分:0.0
递归解决最大公约数问题——辗转相除法 摘要:#解题思路: 1、首先写一个函数 ```cpp int gcd(int a,int b); ``` 2、然后递归 ```cpp int gcd(int a,int b){ retur…… 题解列表 2022年05月11日 0 点赞 0 评论 434 浏览 评分:0.0
欧几里得法求最大公倍数,最小公约数 摘要:解题思路:注意事项:参考代码://辗转相除法 #include<iostream>using namespace std;int gcd(int a,int b){ if(a%b==0) retur…… 题解列表 2022年05月12日 0 点赞 0 评论 305 浏览 评分:0.0