我有一个JAVA任务,我必须使用数组和循环创建一个Hangman
程序。
程序需要检查user2的输入是否有效
如果user2的输入无效(上述条件),则会给出错误消息并要求user2输入其他内容。任何无效输入都不计入10次尝试。
现在,如果输入无效(上面的前两个条件),代码的行为就像它应该的那样。它会给出相应的错误消息,并且尝试次数不会增加。
但是,我似乎无法编写一个条件,如果已经选择了一个字母,它也会给出一条错误信息并要求另一个字母。
我尝试在第一个do / while循环中放入if条件(if upperAlphabet[index] == '*', System.out.println("Duplicate. Try again"))
,但它无法正常工作:它会增加尝试次数。
我的印象是我必须在某个地方做一个for循环。无法找到地点和方式。
import java.util.Scanner;
import java.util.regex.Pattern;
public class Test {
public static void main(String[] args) {
char[] upperAlphabet = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
'V', 'W', 'X', 'Y', 'Z' }; // Alphabet array to display to user2.
String wordtoGuess;
char letterChoice;
String userChoiceString;
String wordArraytoString;
do {
System.out.println("Please enter a valid word (letters only)"); // Asks user1 for a valid word
Scanner wordInput = new Scanner(System.in);
wordtoGuess = wordInput.next();
wordtoGuess = wordtoGuess.toUpperCase();
} while (Pattern.matches("[A-Z]+", wordtoGuess) == false); // Checks word is valid
char[] wordArray = wordtoGuess.toCharArray(); // Puts word in character array
char[] guessingWordArray = new char[wordtoGuess.length()];
for (int h = 0; h < guessingWordArray.length; h++)
guessingWordArray[h] = '*'; // Displays the word to guess with * for user2
for (int i = 0; i < 20; i++) { // Prints 20 empty lines to hide the input of the word from user1
System.out.println();
}
for (int j = 0; j < 10; j++) { // 10 attempts loop
do {
System.out.print("Word to guess: ");
System.out.println(guessingWordArray);
System.out
.println("Please choose a letter or solve the word. " // Asks for a letter or the whole word
+ "Attempts left: " + (10 - j));
System.out.println(upperAlphabet);
Scanner userInput = new Scanner(System.in);
userChoiceString = userInput.next();
userChoiceString = userChoiceString.toUpperCase(); // Captures the input as a string
letterChoice = userChoiceString.charAt(0);
letterChoice = Character.toUpperCase(letterChoice); // Captures the first letter of the input
if (Character.isLetter(letterChoice) == false) // Error if input is an alphabet letter
System.out.println("Invalid letter. Please try again.");
if (userChoiceString.length() > 1 // Error if input is not the same length as the whole word but more than 1 character
&& userChoiceString.length() < wordtoGuess.length())
System.out.println(("Choose only one letter. Try again."));
} while (userChoiceString.length() != 1
&& userChoiceString.length() != wordtoGuess.length()
|| Character.isLetter(letterChoice) == false);
if (userChoiceString.length() == 1) { // if input is only 1 character
for (int k = 0; k < upperAlphabet.length; k++) { // A used letter is replaced by * in alphabet array.
if (letterChoice == upperAlphabet[k]) {
upperAlphabet[k] = '*';
}
}
for (int m = 0; m < wordtoGuess.length(); m++) { // If a letter is correct, reveal the correct letter in the word to guess.
if (letterChoice == wordArray[m]) {
guessingWordArray[m] = wordArray[m];
}
}
wordArraytoString = new String(guessingWordArray); // If all letters are revealed in the word to guess, display winning message when count of guesses.
if (wordArraytoString.equals(wordtoGuess)) {
System.out.println(guessingWordArray);
System.out.print("Congratulations.");
System.out.print("You guessed the word: ");
System.out.print(wordtoGuess);
System.out.println(" in " + (j + 1) + " guesses.");
break;
}
} else if (userChoiceString.length() == wordtoGuess.length()) { // If user2 tries to guess the whole word, displays winning message and number of guesses
if (userChoiceString.equals(wordtoGuess)) {
System.out.println(guessingWordArray);
System.out.print("Congratulations.");
System.out.print("You guessed the word: ");
System.out.print(wordtoGuess);
if (j == 0)
System.out.println(" in " + (j + 1) + " guess.");
else
System.out.println(" in " + (j + 1) + " guesses.");
break;
} else
System.out.println("Wrong guess. Please try again."); // If guessing word is wrong.
}
if (j >= 9)
System.out
.println("You did not guess the word in the number of attemps allowed. Better luck next time."); // If exceeds 10 tries.
}
}
}
答案 0 :(得分:1)
当用户猜测时,您已经获得了正在修改的数组upperAlphabet
。也许您可以安排一些事情,以便如果猜测从upperAlphabet
开始,则会提示用户重复猜测。
为什么不移动此循环
for (int k = 0; k < upperAlphabet.length; k++) { // A used letter is replaced by * in alphabet array.
if (letterChoice == upperAlphabet[k]) {
upperAlphabet[k] = '*';
}
}
在do/while
循环中向上几行,提示用户输入。确保它只在他们只猜一个字符时运行。
然后,您可以在其前面添加行boolean found = false;
,在found = true;
部分添加if
。然后紧接在循环之后,检查found
的值,并显示一条消息,如果它仍然是假的,如果用户重复猜测就是这种情况。
如果猜测不是do/while
,您仍然需要找到一种让found
循环重复的方法。所以这不是一个完整的答案,但它应该足以让你再次前进。
答案 1 :(得分:0)
你可能想要做的只是创建另一个数组来推动你看到的角色,而不是覆盖upperAlphabet中的值,这样找到它更容易,更少杂乱。
ArrayList<char> guessed = new ArrayList();
....
do{
...
while(//your conditions here
&& !guessed.contains(letterChoice) );
guessed.add(letterChoice));
您也可以使用常规数组执行此操作,如下所示。
char guessed = new char[10];
do{
...
while(//your conditions here
&&!contains(guessed, letterChoice));
add(guessed, letterChoice)
//supporting methods
public boolean contains(char[] arr, char val){
//check that array has value
}
public void add(char[] arr, char val){
//add val to first empty space in arr.
}
答案 2 :(得分:0)
因此,为了扩展David Wallace的答案,现在对代码的这种修改实现了你想要的(虽然它仍然需要他提到的附加条件):
import java.util.Scanner;
import java.util.regex.Pattern;
public class Test {
public static void main(String[] args) {
char[] upperAlphabet = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
'V', 'W', 'X', 'Y', 'Z' }; // Alphabet array to display to user2.
int[] guessedLetters = new int[26];
boolean guessed = false;
for(int i=0;i<26;i++)
{
guessedLetters[i] = 0;
}
String wordtoGuess;
char letterChoice;
String userChoiceString;
String wordArraytoString;
do {
System.out.println("Please enter a valid word (letters only)"); // Asks user1 for a valid word
Scanner wordInput = new Scanner(System.in);
wordtoGuess = wordInput.next();
wordtoGuess = wordtoGuess.toUpperCase();
} while (Pattern.matches("[A-Z]+", wordtoGuess) == false); // Checks word is valid
char[] wordArray = wordtoGuess.toCharArray(); // Puts word in character array
char[] guessingWordArray = new char[wordtoGuess.length()];
for (int h = 0; h < guessingWordArray.length; h++)
guessingWordArray[h] = '*'; // Displays the word to guess with * for user2
for (int i = 0; i < 20; i++) { // Prints 20 empty lines to hide the input of the word from user1
System.out.println();
}
for (int j = 0; j < 10; j++) { // 10 attempts loop
do {
guessed = false;
System.out.print("Word to guess: ");
System.out.println(guessingWordArray);
System.out
.println("Please choose a letter or solve the word. " // Asks for a letter or the whole word
+ "Attempts left: " + (10 - j));
System.out.println(upperAlphabet);
Scanner userInput = new Scanner(System.in);
userChoiceString = userInput.next();
userChoiceString = userChoiceString.toUpperCase(); // Captures the input as a string
letterChoice = userChoiceString.charAt(0);
letterChoice = Character.toUpperCase(letterChoice); // Captures the first letter of the input
if (Character.isLetter(letterChoice) == false) // Error if input is an alphabet letter
System.out.println("Invalid letter. Please try again.");
else if (userChoiceString.length() > 1 // Error if input is not the same length as the whole word but more than 1 character
&& userChoiceString.length() < wordtoGuess.length())
System.out.println(("Choose only one letter. Try again."));
for (int k = 0; k < upperAlphabet.length; k++) { // A used letter is replaced by * in alphabet array.
if(guessedLetters[k] == 1)
{
guessed = true;
System.out.println("You've already tried this letter. Please try again.");
}
if (letterChoice == upperAlphabet[k]) {
//upperAlphabet[k] = '*';
guessedLetters[k] = 1; //note which letter has been chosen
}
}
} while (userChoiceString.length() != 1
&& userChoiceString.length() != wordtoGuess.length()
|| Character.isLetter(letterChoice) == false
|| guessed == true);
if (userChoiceString.length() == 1) { // if input is only 1 character
/*
for (int k = 0; k < upperAlphabet.length; k++) { // A used letter is replaced by * in alphabet array.
if (letterChoice == upperAlphabet[k]) {
//upperAlphabet[k] = '*';
guessedLetters[k] = 1;
}
}
*/
for (int m = 0; m < wordtoGuess.length(); m++) { // If a letter is correct, reveal the correct letter in the word to guess.
if (letterChoice == wordArray[m]) {
guessingWordArray[m] = wordArray[m];
}
}
wordArraytoString = new String(guessingWordArray); // If all letters are revealed in the word to guess, display winning message when count of guesses.
if (wordArraytoString.equals(wordtoGuess)) {
System.out.println(guessingWordArray);
System.out.print("Congratulations.");
System.out.print("You guessed the word: ");
System.out.print(wordtoGuess);
System.out.println(" in " + (j + 1) + " guesses.");
break;
}
} else if (userChoiceString.length() == wordtoGuess.length()) { // If user2 tries to guess the whole word, displays winning message and number of guesses
if (userChoiceString.equals(wordtoGuess)) {
System.out.println(guessingWordArray);
System.out.print("Congratulations.");
System.out.print("You guessed the word: ");
System.out.print(wordtoGuess);
if (j == 0)
System.out.println(" in " + (j + 1) + " guess.");
else
System.out.println(" in " + (j + 1) + " guesses.");
break;
} else
System.out.println("Wrong guess. Please try again."); // If guessing word is wrong.
}
if (j >= 9)
System.out
.println("You did not guess the word in the number of attemps allowed. Better luck next time."); // If exceeds 10 tries.
}
}
}