Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95080 杜春雨 两个数的最小公倍数 C++ Accepted 1 MS 280 KB 236 2024-10-26 17:56:26

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,temp,lcm,a1,b1; cin>>a>>b; a1=a; b1=b; while(b!=0){ temp=a%b; a=b; b=temp; } lcm=a1*b1/a; cout<<lcm<<endl; return 0; }