Java中的大整数操作

BigInteger类封装了操作大整数的方法,使用方法如下:

1.int类型或者Long类型的变量存储不了大整数,可以放在byte数组或者String中。然后用BigInteger的构造函数返回一个BigInteger对象。(BigInteger x = new BigInteger(String str))
2.调用相关函数:
   相加:add(BigInteger val);
   相减:subtract(BigInteger val);
   相乘:multiply(BigInteger val);
   相除:divide(BigInteger val);
   最大公约数:gcd(BigInteger val);
   取模:mod(BigInteger val);
   N次方:pow(int exponent);

一个相加操作的例子:
import java.math.BigInteger;
import java.util.Scanner;
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		while(sc.hasNext()){
			String str1 = sc.nextLine();
			String str2 = sc.nextLine();
			BigInteger x1 = new BigInteger(str1);
			BigInteger x2 = new BigInteger(str2);
			System.out.println(x1.add(x2));
		}
		sc.close();
	}
}

你可能感兴趣的:(Java基础)