最大公约数与最小公倍数模板 摘要:#include <stdio.h> int gcd(int a,int b) { if(b==0)return a; else return gcd(b,a%b); } int ma…… 题解列表 2022年04月01日 0 点赞 0 评论 121 浏览 评分:9.9
C语言 先暴力一个再计算找另一个 摘要: #include int main(){ int a,b; int c=0,d=0; scanf("%d %d",&a,&b); in…… 题解列表 2022年03月29日 0 点赞 0 评论 135 浏览 评分:0.0
辗转相减法——最大公约数与最小公倍数 摘要:解题思路:辗转相减法注意事项:参考代码:m,n=map(int,input().split())product=m*nwhile m!=n: p=max(m,n) q=min(m,n) …… 题解列表 2022年03月29日 0 点赞 0 评论 437 浏览 评分:9.9
最大公约数与最小公倍数(简化) 摘要:解题思路:辗转相除法求得最大公约数,再求得最小公倍数。注意事项:参考代码:#include <stdio.h>int main(){ int a,b; int t; scanf("%d %d", &…… 题解列表 2022年03月28日 0 点赞 0 评论 182 浏览 评分:9.9
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:kan注意事项: int nNum1 = m ;//中间变量:保存m int nNum2 = n ;//中间变量:保存n参考代码:int t = 1 ;//取余计算的余数,赋值为1是为…… 题解列表 2022年03月26日 0 点赞 0 评论 220 浏览 评分:9.9
编写题解 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 评论 173 浏览 评分:0.0
自己瞎想的 摘要:#include<stdio.h>int main(){ int n,m,max,min; scanf("%d",&n); scanf("%d",&m); max=n>m?n:m; min=n<m?n…… 题解列表 2022年03月19日 0 点赞 0 评论 180 浏览 评分:0.0
最大公约数与最小公倍数 摘要:##最大公约数和最小公倍数 ```c #include int main() { int a,b,t,m,n,i; scanf("%d %d",&a,&b); t=a0;i--){…… 题解列表 2022年03月16日 0 点赞 0 评论 167 浏览 评分:0.0
辗转相除法 摘要:```cpp #include using namespace std; int gcd(int a, int b){ return b ? gcd(b, a % b) : a; …… 题解列表 2022年03月15日 0 点赞 0 评论 86 浏览 评分:0.0
最大公约数与最小公倍数模板 超简单超短代码 摘要:解题思路:最小公约数欧几里得算法gcd(a,b)=gcd(b,a mod b)最小公倍数是a*b//最小公约数注意事项:参考代码:def gcd(a, b): if b == 0: …… 题解列表 2022年03月11日 0 点赞 1 评论 314 浏览 评分:9.9