1229: 最小公倍数 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) def get(a,b): if a%b==0: return b e…… 题解列表 2022年02月07日 0 点赞 1 评论 162 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a, int b){ int temp; while (a % b != 0) { temp = a % b;…… 题解列表 2023年10月13日 0 点赞 0 评论 89 浏览 评分:0.0
最小公倍数-题解(C语言代码) 摘要:####1. AC代码 #include int GBS(int a ,int b){ for(int i =b;i …… 题解列表 2020年03月06日 0 点赞 0 评论 499 浏览 评分:0.0
最复杂的解题方法(但比较好理解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a,b,t; scanf("%d %d",&a,&b); if(a==b) …… 题解列表 2024年11月21日 0 点赞 0 评论 45 浏览 评分:0.0
最小公倍数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月06日 0 点赞 0 评论 509 浏览 评分:0.0
利用最小公约数求最大公倍数 摘要:解题思路:利用最小公约数求最大公倍数参考代码:#include<stdio.h>int gcd(int m,int n) { if(m%n==0) return n; else return gcd(…… 题解列表 2024年12月08日 0 点赞 0 评论 95 浏览 评分:0.0
最小公倍数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeric>#include <it…… 题解列表 2018年01月14日 0 点赞 0 评论 832 浏览 评分:0.0
1229基础解法(Python) 摘要:解题思路:直接调用Python的math库函数即可注意事项:Python 3.9 以上版本可以直接调用math.lcm()函数,其他版本只有math.gcd()函数参考代码:from math imp…… 题解列表 2023年03月06日 0 点赞 0 评论 82 浏览 评分:0.0
最小公倍数 (C语言代码)(非最小公倍数性质解) 摘要:欢迎大家批评指正,谢谢!!!解题思路: 两个数的最小公倍数不可能比他们的乘积大参考代码: #include<stdio.h> 题解列表 2019年05月06日 0 点赞 0 评论 1164 浏览 评分:0.0
1229: 最小公倍数 摘要:解题思路:用递归的方法,就可以用简洁的代码解决了。注意事项:参考代码:n1,n2=map(int,input().split())def get(n1,n2): if n1%n2==0: …… 题解列表 2023年02月03日 0 点赞 0 评论 96 浏览 评分:0.0