0

请帮我做一个无限循环:在案例显示答案后,程序应该立即再次询问用户。

package calendartool;

import java.io.Console;

public class CalendarTool {


    public static void main(String[] args) {

        Console C = System.console();
        int month = Integer.parseInt(C.readLine("Please put a valid month: \n"));
        int year = Integer.parseInt(C.readLine("Please put a valid year: \n"));

            switch (month) {
                case 1:
                    System.out.println("The month is January!");
                    System.out.println("January has 31 days!");
                    break;

            }



    }
}
4

4 回答 4

4

我更喜欢,但这是一个品味问题...

while(true){
}
于 2012-10-14T14:02:21.823 回答
1

无限循环:

while(true) {
    //Your code here
}
于 2012-10-14T14:01:34.040 回答
1

我一直偏爱:

for(;;)
{
    //Do stuff
}

如果只是因为它打字更快。

于 2012-10-14T14:03:33.810 回答
0

使用 do-while 循环询问用户是否要继续。

br 是 bufferredreader 实例变量。

 char ch=(char)br.read();
 do
 {
System.out.println("press 1 for month jan");
System.out.println("do you want to continue(Y/N)");

}
while(ch=='Y'||ch=='Y');
于 2012-10-14T14:43:20.593 回答