用按键打破do..while循环

时间:2018-07-23 11:51:18

标签: java

我只想在用户使用此代码中的do while循环按下 y 键时继续执行程序,例如while('o'!=='y')。我也尝试过这个:

public class clac {
     do {     
         System.out.println("\nwant to try again\n press y/n");
         String o;
         o=sc.next();
     } while(!o.contentEquals("y"));
}

1 个答案:

答案 0 :(得分:-1)

如果要在“ y”输入中提问,请使用以下代码:

   public static void main(String r[]) throws IOException {
        Scanner sc = new Scanner(System.in);
        String o;
        do {     
             System.out.println("\nwant to try again\n press y/n");
             o=sc.next();
         } while(!o.contentEquals("y"));
    }

希望这就是您想要的。