在遇到大数字题目的时候使用java的BigInteger类是很方便的
构造方法:
BigInteger(String val) //将字符串的表示的数字赋值给当前对象
常用方法:
public BigInteger add(BigInteger val) //返回当前对象与val的和
public BigInteger subtract(BigInteger val) //返回当前对象与val的差
public BigInteger multiply(BigInteger val) //返回当前对象与val的积
public BigInteger divide(BigInteger val) //返回当前对象与val的商
public BigInteger remainder(BigInteger val) //返回当前对象与val的余(取模)
public int compareTo(BigInteger val) //返回当前对象与val的比较结果,当前对象大于val返回1,等于返回0,小于返回-1
public BigInteger abs() //返回当前对象的绝对值
public BigInteger pow(int a) //返回当前对象的a次幂(采用快速幂算法)
public String toString() //返回当前对象的十进制表示的字符串
public String toString(int p) //返回当前对象的p进制表示的字符串