gpt4 book ai didi

java - 如何对输入使用忽略大小写语句

转载 作者:行者123 更新时间:2023-12-02 03:34:16 25 4
gpt4 key购买 nike

如何忽略大小写。我制作了一个显示菜单,当我输入小写字母时,会出现正确的输出,但是当我输入大写字母时,它会继续执行 while 语句。我知道我必须使用ignoreCase 语句,但我不知道如何使用。先感谢您。

public class Aaa {
AQAConsole2016 console = new AQAConsole2016();
Random random = new Random();
int boardSize;
boolean moveIsValid;

char [][] board;
int move;
char choice;
String playerName="Human";
String player2="Computer";
boolean exit=false;
public Aaa() {

boardSize = 6;

do {
displayMenu();
choice = getMenuChoice(playerName);
switch (choice) {
case 'p' : playGame(playerName, boardSize);
break;
case 'e' : playerName = getPlayersName();
break;
case 'c' : boardSize = changeBoardSize();
break;
case 'm' : Multiplayer( boardSize,playerName,player2);
break;
case 'r' :readBoard(board,boardSize);
break;
case 'q' : Quit();


}
}while (choice!='p'||choice!='e'||choice!='c'||choice!='m'||choice!='r'||choice!='q');
}
void Quit(){
while (choice=='q'){
exit=true;
}

最佳答案

只需使用 Character#toLowerCase()为了这。

choice = Character.toLowerCase(getMenuChoice(playerName));

关于java - 如何对输入使用忽略大小写语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37630390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com