| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136160 | 张暄浩 | 两个数的最小公倍数 | C++ | Wrong Answer | 1 MS | 272 KB | 417 | 2025-11-09 17:01:56 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,n,lcm,a1,b1; cin>>a>>b; a1=a; b1=b; while(n!=0){ n=a%b; a=b; b=n; } lcm=a1*b1/a; cout<<lcm<<endl; return 0; }
------Input------
50 32
------Answer-----
800
------Your output-----
32