how to input a BigInteger type in java

前端 未结 5 1221
抹茶落季
抹茶落季 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:30

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

    Reference: Scanner#nextBigInteger

提交回复
热议问题