“Java -Scanner -Zeichenfolge Nächste Linie nach NextInt” Code-Antworten

Java -Scanner -Zeichenfolge Nächste Linie nach NextInt

//The problem is with the input.nextInt() method - it only reads the int value. So when you continue reading with input.nextLine() you receive the "\n" Enter key. So to skip this you have to add the input.nextLine(). Hope this should be clear now.

//Try it like that:

System.out.print("Insert a number: ");
int number = input.nextInt();
input.nextLine(); // This line you have to add (It consumes the \n character)
System.out.print("Text1: ");
String text1 = input.nextLine();
System.out.print("Text2: ");
String text2 = input.nextLine();
DevPedrada

Sc.Nextline spielt

int option = input.nextInt();
input.nextLine();  // Consume newline left-over
String str1 = input.nextLine();
Grieving Gannet

Ähnliche Antworten wie “Java -Scanner -Zeichenfolge Nächste Linie nach NextInt”

Fragen ähnlich wie “Java -Scanner -Zeichenfolge Nächste Linie nach NextInt”

Weitere verwandte Antworten zu “Java -Scanner -Zeichenfolge Nächste Linie nach NextInt” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen