Friday, December 28, 2018

Java String Scanner input does not wait for info, moves directly to next statement. How to wait for info?

I am writing a simple program that prompts a user to enter a number of students, then asks the user to enter each student's name and score in order to determine which student has the highest score.



I have written the program code and it compiles. First line asks for a number of students and waits for input. The second line is supposed to ask for a student name and wait for input, then a third line should print ans ask for that student's score, and wait for input but after the second line prints, the third line is immediately called (2nd line does not wait for input) and then I get a runtime error when trying to enter the requested information after the third line.



How do I adjust the code so that the second line prints and waits for a string to be entered before printing the third line?




import java.util.Scanner;

public class HighestScore {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

System.out.print("Enter the number of students: ");
int numOfStudents = input.nextInt();


System.out.print("Enter a student's name: ");
String student1 = input.nextLine();

System.out.print("Enter that student's score: ");
int score1 = input.nextInt();

for (int i = 0; i <= numOfStudents - 1; i++) {

System.out.println("Enter a student's name: ");
String student = input.nextLine();


System.out.println("Enter that student's score: ");
int score = input.nextInt();

if (score > score1) {
student1 = student;
score1 = score;
}
}
System.out.println("Top student " +

student1 + "'s score is " + score1);
}
}

No comments:

Post a Comment

plot explanation - Why did Peaches&#39; mom hang on the tree? - Movies &amp; TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...