无法解决NoSuchElementException

时间:2018-08-30 21:31:45

标签: java

在各种在线IDE上执行代码时,我收到NoSuchElementException异常。我正在使用Scanner对象使用STDIN。

import java.util.*;
import java.util.Scanner;

    class Maze{

        public static int numberLength(int k){
             int ln = (int) (Math.log10(k) + 1);
             return ln;
        }


        public static void main(String [] args){

            Scanner kb = new Scanner(System.in);
           int n = kb.nextInt();
           int s = numberLength(n);
           System.out.println(s);

        }
    }  

2 个答案:

答案 0 :(得分:0)

您必须检查Custom input并输入您的输入,然后编译

答案 1 :(得分:0)

您必须为在主体中声明的图元提供输入。