1. 程式人生 > >歐幾裏德算法--求最大公約數

歐幾裏德算法--求最大公約數

clas pan nbsp 歐幾裏德 bsp sig while turn 最大

unsigned int Gcd(unsigned int M,unsigned int N)
{
    unsigned int Rem;
    while(N > 0)
    {
        Rem = M % N;
        M=N;
        N=Rem;
    }
    return M;
}

歐幾裏德算法--求最大公約數