import java.util.Scanner;
public class ClassList {
static final int SIZE = 10;
public static void main(String Args[]) {
Student[] students = new Student[SIZE];
Scanner s = new Scanner(System.in);
String name, id;
float gpa;
do {
System.out.println("Enter a Student");
name = s.nextLine();
System.out.println("Enter a ID");
id = s.nextLine();
System.out.println("Enter a GPA");
gpa = s.nextFloat();
} while(!name.equals("quit"));
}
}
基本上,当你运行这个程序时发生的事情是它会运行一次,然后在第二次迭代时,它会询问学生姓名。但它只会跳过用户应该输入它的位置并进入“获取 ID”。我该如何阻止它。