how to input a BigInteger type in java

前端 未结 5 1235
抹茶落季
抹茶落季 2020-12-31 13:34

when I tried to get an input of type Integer, what I only needed to do was the code below.

Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-31 14:24

    You need to import the BigInteger package:

    import java.math.BigInteger;
    

    Include this package and code below:-

    Scanner sc=new Scanner(System.in);
    BigInteger=sc.nextBigInteger();
    

提交回复
热议问题