0

我想做的是,当程序询问您是否要添加另一个学生时,它会说“您要添加另一个学生Y/N吗?” 如果Y输入,那么它会让你添加另一个,如果你输入N它会带你回到我的程序的主菜单。所以我设置Y=1N=0我只是想弄清楚程序如何阅读Y并知道该怎么做。

public class TestStudent {

    public static void main (String[] args) throws IOException
    {  
        InputStreamReader isr = new InputStreamReader (System.in );
            BufferedReader stdin = new BufferedReader( isr );


        String check, tempString, tempString2, setName, getName, setScore, getScore;
        int tempInt, tempInt2, y, n;
        boolean quit = false;
        y=1;
        n=0;
        Student s1, s2, s3;
        s1 = new Student();
        s2 = new Student();
        s3 = new Student();

        do
        {
            System.out.println("A - Add student, D - Delete student, F - Find student, H - Help, S - Scores, X - Exit");
            check = stdin.readLine().toLowerCase();
            switch (check)
            {

                case "a":                
                    System.out.println("Enter the student's name");
                    tempString = stdin.readLine();
                    s1.setName(tempString);
                    System.out.println("Would you like to add another student Y/N?");
                    tempString = stdin.readLine();
                    if (y=1) {
                        System.out.println("Enter the student's name");
                        tempString = stdin.readLine();
                    }
                    s2.setName(check);
                    s3.setName(check);
                break;
4

1 回答 1

1

首先,您将要添加toLowerCase到您的tempString作业中。

tempString = stdin.readLine().toLowerCase();
if (tempString.equals("y")) {

这将检查他们给你的字符串与 y,你的版本刚刚更新(=意味着分配)一个你没有使用的变量。

于 2013-10-07T19:12:58.127 回答