循环问题?

时间:2014-01-19 02:41:08

标签: java while-loop options choice

每次我从一个选项列表中输入一个选项时,它只是一直告诉我再次输入一个选项,只有当用户输入一个不是选项的东西时才会这样做。

对于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();
        }

    }
}

2 个答案:

答案 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必须等于所有选择,这是不可能的。