最小公倍数

最小公倍数

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

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

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

Sample Input
10 14

Sample Output
70

#include
int main()
{
    int a,b;
    while(~scanf("%d %d",&a,&b))
    {
        if(aint term=a;
            a=b;
            b=term;
        }
        int x,y,z=1;
        x=a;
        y=b;
        while(z)
        {
            z=a%b;
            a=b;
            b=z;
        }
        printf("%d\n",x*y/a);
    }
    return 0;
}

最小公倍数_第1张图片

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