题解 | #求最小公倍数#
求最小公倍数
https://www.nowcoder.com/practice/22948c2cad484e0291350abad86136c3
#include <iostream>
#include <numeric>
using namespace std;
int main() {
int a, b;
while(scanf("%d %d", &a, &b) != EOF) {
printf("%d\n", a*b/ gcd(a, b)); // (1)
}
}
// 64 位输出请用 printf("%lld")

传音控股公司福利 360人发布