Java Scanner why is nextLine() in my code being skipped? [duplicate]

若如初见. 提交于 2019-11-29 15:51:25
dogbane

Use:

String x = kb.next();

instead of kb.nextLine().

This is because nextInt() reads just the number, not the end of line or anything after the number. When you call nextLine() it reads the remainder of the same line and does not wait for input.

Ideally you should call kb.nextLine() the line after your code for nextInt() to ignore the rest of the line.

Scanner kb = new Scanner(System.in);
    System.out.println("Inserting L");
    int L = kb.nextInt();   
    System.out.println("Inserting N");
    int N = kb.nextInt();
    System.out.println("Inserting x");
    String x = kb.next();
    System.out.println(x);
    System.out.println("You inputed L,N,x");

try this one...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!