题目描述 求a、b的最小公倍数。 题目分析 求a、b的最小公倍数,即求最小正整数c,使满足c%a=0且c%b=0。 代码实现 最大公约数(GCD) a*b/gcd(a, b) 转载于:https://www.cnblogs.com/xwz0528/p/4816925.html