예제 #1
0
파일: BigInt.cpp 프로젝트: LeonaLiu/BIGINT
    //乘法
    const BigInt operator*(const BigInt &lhs, const BigInt &rhs)
    {
        return lhs.Mul(rhs);

    }