java大数轻松过
Posted 霜雪千年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java大数轻松过相关的知识,希望对你有一定的参考价值。
1 import java.util.Scanner; 2 import java.math.BigInteger; 3 public class Main { 4 public static void main(String[] args) { 5 Scanner scan = new Scanner(System.in); 6 BigInteger a = scan.nextBigInteger(); 7 BigInteger b = scan.nextBigInteger(); 8 System.out.println(a+" + "+b+" = "+a.add(b)); 9 System.out.println(a+" - "+b+" = "+a.subtract(b)); 10 System.out.println(a+" * "+b+" = "+a.multiply(b)); 11 System.out.println(a+" / "+b+" = "+a.divide(b)); 12 } 13 }
以上是关于java大数轻松过的主要内容,如果未能解决你的问题,请参考以下文章