我试图创建一个简单的java程序,基本上我正在使用一些用户输入值并以整齐排列的输出打印出来。这一切都在控制台中。但是当我继续添加更多输入时,程序就不能让我接受输入。这是我的代码:
import java.util.*;
public class output {
public static void main(String arg[]) {
//================================================================================
// Level 1 Start
//================================================================================
Scanner input = new Scanner(System.in);
//Start asking the user questions and store the values
System.out.println("Hello! What is your name?");
String name = input.nextLine();
System.out.println("Hello " + name + "! Nice to meet you!");
//================================================================================
// Level 1 End
//================================================================================
//================================================================================
// Level 2 Start
//================================================================================
System.out.println("How old are you?");
String age = input.nextLine();
System.out.println("Are you male or female?");
String gender = input.nextLine();
System.out.println("How much do you weigh?");
int weight = input.nextInt();
System.out.println("Are you a student? (true/false)");
boolean isAStudent = input.nextBoolean();
//Add a space
System.out.println("\n");
//Display the user's data neatly
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("Gender: " + gender);
System.out.println("Weight: " + weight);
//check to see if the user is a student and print it out
if(isAStudent) {
System.out.println("Student?: Yes");
} else {
System.out.println("Student?: No");
}
//================================================================================
// Level 2 End
//================================================================================
//================================================================================
// Level 3 Start
//================================================================================
System.out.println("\n");
//display hello world a bunch of times
for(int i = 0; i < 5; i++){
System.out.println("Hello Hello Hello Hello Hello Hello");
}
System.out.println("\n");
System.out.println("Tell me a quote");
String quote = input.nextLine();
System.out.print(quote);
//================================================================================
// Level 3 End
//================================================================================
}
}
我知道我不应该在stackoverflow上放置大量的代码,但我觉得其他部分可能会导致解决方案。所以我的问题是,当我到达第3级(检查注释)和打印声明时,它说'#34;告诉我一个引用&#34;,我无法接受该行的输入。所以String语句的输入就好像我按下了回车键,即使我没有。所以,在我能够输入任何东西之前,它已经取得了价值。请帮助我......如果您需要更多解释,请告诉我。
答案 0 :(得分:1)
在此之后,
boolean isAStudent = input.nextBoolean();
换行符仍在缓冲区中。你应该摆脱它:
boolean isAStudent = input.nextBoolean();
input.nextLine();