Skip to content

Files

Latest commit

2615e38 · Dec 3, 2017

History

History
15 lines (15 loc) · 275 Bytes

least-common-multiple.md

File metadata and controls

15 lines (15 loc) · 275 Bytes
int gcd(int x, int y) {
    int tmp;
    // 如果x < y 則下面的迴圈執行第一次時就會交換x,y了
    while (x % y != 0) {
        tmp = y;
        y = x % y;
        x = tmp;
    }
    return y;
}
int lcm(int x, int y) {
    return x * y / gcd(x,y);
}