import java.util.*; import java.math.*; //BigInteger类型在这个包里 public class Gcc_test { public static void main(String[] args) { Scanner in = new Scanner(System.in); BigInteger a = new BigInteger("1111111111111111111111"); //也可手动输入 BigInteger b = new BigInteger("3222222222222222222229"); System.out.println(a.multiply(b)); //高精度计算大数据 } }
相对于C语言的大数据计算,java这个更高级别的语言提供更加大的数据类型,并且高精度乘法已经封装好了直接调用实现。
原文地址:https://www.cnblogs.com/Lunix-touch/p/9785989.html
时间: 2024-09-30 15:22:53