如何忽略非整数输入并继续接受输入

来源:爱站网时间:2021-09-23编辑:网友分享
我正在尝试忽略任何非整数输入(例如r,$,£),并继续接受输入,直到有整数输入为止。任何帮助表示赞赏。 while(input.hasNextInt()){int列= input ....

问题描述


我正在尝试忽略任何非整数输入(例如r,$,£),并继续接受输入,直到有整数输入为止。任何帮助表示赞赏。

    while (input.hasNextInt()){

    int column = input.nextInt();
    if (column  6){
      errorWrongInput();
      continue;
    } 
    if(placeCounter(board,column,player)) {
      if (hasWon(board)){
          System.out.println ("Player " +player+ " wins");
          printBoard(board);
          return;
      }
      player = playerTurn(player);
    }
  printBoard(board); // print the board
  }
}

思路:


希望有帮助。如果没有,请在错过的地方做评论。

while (input.hasNext()){ // use hasNext instead of hasNextInt
try{
    int column = input.nextInt();
    if (column  6){
      errorWrongInput();
      continue;
    } 
catch (InputMismatchException ex){ //catch Exception here for non integer input
            input.next(); // do a next() here
            continue;
        }
    if(placeCounter(board,column,player)) {
      if (hasWon(board)){
      System.out.println ("Player " +player+ " wins");
      printBoard(board);
      return;
      }
      player = playerTurn(player);
    }
  printBoard(board); // print the board
  }
}

上一篇:当存在外键联接时,带有Hibernate的Spring JPA处理空子实体

下一篇:Intellij,目标JRE vesion与项目jdk版本不匹配

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载