G(最小公倍数)

给定两个正整数,计算这两个数的最小公倍数。

Input

输入包含多组测试数据,每组只有一行,包括两个不大于1000的正整数.

Output

对于每个测试用例,给出这两个数的最小公倍数,每个实例输出一行。 

Sample Input

10 14

Sample Output

70

常见算法:C语言求最小公倍数和最大公约数三种算法 - iwm_NeXT的专栏 - CSDN博客

怎么求最大公因数和最小公倍数 - u010563350的博客 - CSDN博客

华为在线编程系列-最小公倍数 - 小仙女的博客 - CSDN博客


#include

#include

#include

#include

using namespace std;

int  main()

{

int a,b;

    while(~scanf("%d%d",&a,&b)){

    int x=a;

int y=b;

    while(a!=b){

    if(a>b)

    a=a-b;

    else b=b-a;

}

printf("%d\n",x*y/a);

}

  return 0;

}


你可能感兴趣的:(G(最小公倍数))