每次我从一个选项列表中输入一个选项时,它只是一直告诉我再次输入一个选项,只有当用户输入一个不是选项的东西时才会这样做。
对于yes和no选项,我在while循环中遇到了同样的问题,但是在修复之后我看不出它与除了更多选项之外我还有问题的区域之间的任何差异。
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package testing.tests;
import java.util.Scanner;
/**
*
* @author andyoppenheimer
*/
public class TestingTests {
static Scanner sc = new Scanner(System.in);
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String start_end;
String test_run = null;
int name_num = 0;
int LOOP_1 = 0;
int LOOP_2 = 0;
while (LOOP_1 == 0) {
System.out.println("Do you want to continue, yes or no?");
System.out.print("----->: ");
start_end = sc.next();
if ("yes".equals(start_end)) {
LOOP_1 = 1;
}
if ("no".equals(start_end)) {
LOOP_1 = 1;
System.exit(0);
}
if (!"no".equals(start_end) & !"yes".equals(start_end)) {
LOOP_1 = 0;
}
}
**
while (LOOP_2 == 0) {
System.out.println("Please pick your test to run.");
System.out.println("population");
System.out.println("income");
System.out.println("password");
System.out.println("randomize");
System.out.print("----->: ");
test_run = sc.next();
if (!"population".equals(test_run) && !"income".equals(test_run) && !"password".equals(test_run) && !"randomize".equals(test_run)) {
LOOP_2 = 0;
}
if ("population".equals(test_run) & "income".equals(test_run) & "password".equals(test_run) & "randomize".equals(test_run)) {
LOOP_2 = 1;
}
**
}
if ("population".equals(test_run)) {
}
if ("income".equals(test_run)) {
}
if ("password".equals(test_run)) {
}
if ("randomize".equals(test_run)) {
System.out.println("Enter the number of names that will be randomized.");
System.out.print("----->: ");
name_num = sc.nextInt();
}
}
}
答案 0 :(得分:4)
更改此行
if ("population".equals(test_run) & "income".equals(test_run) & "password".equals(test_run)& "randomize".equals(test_run)) {
LOOP_2 = 1;
}
到
if ("population".equals(test_run) || "income".equals(test_run) || "password".equals(test_run)
|| "randomize".equals(test_run)) {
LOOP_2 = 1;
}
||
是逻辑OR运算符,这是您应该使用的。
&
评估操作的两面,因此if
评估test_run
等于"population"
,{{1} },"income"
和"password"
,这是不可能的。
修改强>
由于第一个"randomize"
没有改变任何内容(if
将保留其值LOOP_2
),我会忽略整个0
,换句话说,删除第一个if
if
// Delete this
if (!"population".equals(test_run) && !"income".equals(test_run) && !"password".equals(test_run) && !"randomize".equals(test_run)) {
LOOP_2 = 0;
}
答案 1 :(得分:0)
本声明:
if ("population".equals(test_run) & "income".equals(test_run) &
"password".equals(test_run) & "randomize".equals(test_run)) {
LOOP_2 = 1;
}
永远不会执行。您应该使用或运算符||
,而不是&
。正如代码目前所代表的那样,对于这个条件来评估真实test_run
必须等于所有选择,这是不可能的。