如何实现,输入错误请重新输入。

如何实现,输入错误请重新输入,将语句跳转到Scanner in=new Scanner(System.in);这一行呢?或者说我的着种写法本身就是错的?

 System.out.println("请输入一个星期数");
     Scanner in=new Scanner(System.in);
     int x=in.nextInt();
     if((x<1||x>7)){
     System.out.println("输入错误请重新输入");
      /*(此处应有代码..)*/
     }


杜隆胸
浏览 4562回答 5
5回答

狼顾之相1995

都错了用do。。。while

冰山点水

用do...while循环

慕粉3932472

用循环,比如while
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java