解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int main()
{
int n,m,temp;
cin>>n>>m;
if(n>m)
{
temp=n;
n=m;
m=temp;
}
int a=m*n;
while(n)
{
temp=n;
n=m%n;
m=temp;
}
cout<<a/temp;
return 0;
}
0.0分
0 人评分
C二级辅导-计负均正 (C语言代码)浏览:643 |
C语言训练-自守数问题 (C语言代码) long long浏览:1106 |
【亲和数】 (C语言代码)浏览:908 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:669 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:368 |
本人酷爱递归实现很多问题,这里也是浏览:632 |
水仙花 (C语言代码)浏览:1163 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:537 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:612 |