题解 | #求最小公倍数#
求最小公倍数
https://www.nowcoder.com/practice/22948c2cad484e0291350abad86136c3
#include <iostream>
#include<numeric>
using namespace std;
int main() {
int a, b;
cin>>a>>b;
int num=lcm(a,b);
cout<<num<<endl;
return 0;
}
// 64 位输出请用 printf("%lld")

查看23道真题和解析