-3
我已经创建了这个代码,它是一个简单的hang子手游戏,代码检查用户输入是字符还是字符串,并且将破折号阵列中的下划线与用户输入交换。如何为我的hangman java代码添加更多功能?
我的问题是我如何添加功能来告诉用户,他们的输入不在单词中,以及如果用户输入例如2个或更多连续字母在单词中如何交换?
public class question6 {
public static void main(String[] args) {
Scanner input = new Scanner (System.in);
String secretword = "testing";
// now we need to create an array that stores characters so that we can swap them
// this is an array of characters that has the same length as the secret word
char[] dashes =new char[secretword.length()];
// now we need to add dashes to the array
for (int i=0; i<secretword.length(); i++){
dashes[i]= '_' ;
}
// now we need to start a loop that asks the user for input until all the dashes are swapped
// declaring variables for loop counter and steps
int counter = 0;
int steps =0;
// condition remains true until the counter is the same length as the secret word to make sure we swap everything
while (counter<secretword.length()){
// asking for input
System.out.print("Key in one character or your guess word: ");
String userinput = input.nextLine();
// if it is a character
if (userinput.length() == 1){
for (int i = 0; i<secretword.length(); i++){
// swapping
if (userinput.charAt(0) == secretword.charAt(i)){
dashes[i] = userinput.charAt(0);
counter ++;
}
}
}
// swapping the whole word
else if (userinput.equals(secretword)){
for (int j=0; j<secretword.length(); j++){
dashes[j]= userinput.charAt(j);
counter = secretword.length();
}
}
steps ++;
System.out.println(dashes);
}
}
}
我认为你高估了空行。 – xenteros
[help]中的[so]和[mcve]一样有趣的文章。我强烈建议他们帮助学习如何提出好问题。 – xenteros