一、題目描述
二、思路
語法基礎(chǔ):StringBuilder 類似列表,可以更改元素。
package Practice;
public class tt {
public static void main(String[] args) {
String str = "banana";
System.out.println(str.indexOf('z')); // -1
System.out.println(str.indexOf('a', 2)); // 3
StringBuilder words = new StringBuilder();
for (int i = 0; i < 5; i++)
words.append('*'); // "*****"
System.out.println(words.length()); // 5
System.out.println(words.indexOf("a"));// -1
System.out.println(words.indexOf("*", 1)); // 1
words.setCharAt(3, 'a'); // "***a*"
System.out.println(words);
}
}
三、代碼
package Practice;
import java.util.Scanner;
public class Guess {
public static String words[] = {"banana", "telecommunication", "programming", "bupt"};
public static boolean[] guessed = new boolean[words.length]; // 判斷猜過
public static int num_guessed = 0; // 猜過的單詞數(shù)量
public static char keep; // 是否繼續(xù)y or n
public static void main(String[] args) {
// for(int i = 0; i < guessed.length; i ++ ) System.out.println(guessed[i]);
Scanner scanner = new Scanner(System.in);
do{
// 隨機(jī)產(chǎn)生要猜測的單詞 ans
int index = (int) (Math.random() * words.length);
String ans = words[index];
// 再來一次時的重復(fù)檢測
while(guessed[index] == true)
{
index = (int) (Math.random() * words.length);
ans = words[index];
}
// 初始化,StringBuilder類似list
StringBuilder guessedWord = new StringBuilder();
for (int i = 0; i < ans.length(); i++)
guessedWord.append('*');
int numberOfCorrectLettersGuessed = 0, numberOfMisses = 0;
// 模擬過程
while (numberOfCorrectLettersGuessed < ans.length()) {
System.out.print("(Guess) Enter a letter in word " + guessedWord
+ " > ");
String s = scanner.nextLine();
char letter = s.charAt(0);
if (guessedWord.indexOf(letter + "") >= 0) { // 猜中,但重復(fù),不算錯誤次數(shù)
System.out.println(" " + letter + " is already in the word");
} else if (ans.indexOf(letter) < 0) { // 猜錯
System.out.println(" " + letter + " is not in the word");
numberOfMisses++;
} else { // 猜中,進(jìn)行標(biāo)記與賦值
int k = ans.indexOf(letter);
while (k >= 0) {
guessedWord.setCharAt(k, letter);
numberOfCorrectLettersGuessed++;
k = ans.indexOf(letter, k + 1);
}
}
}
System.out.println("The word is " + ans + ". You missed "
+ numberOfMisses + ((numberOfMisses <= 1) ? " time" : " times"));
guessed[index] = true;
num_guessed += 1;
if(num_guessed < words.length)
{
System.out.print("Do you want to guess for another word? Enter y or n> ");
keep = scanner.nextLine().charAt(0);
}
}while(keep == 'y' && num_guessed < words.length);
if(keep == 'y')
System.out.println("Perfect!!!");
else
System.out.println("You have guessed " + num_guessed + ((num_guessed <= 1) ? " word~" : " words~"));
}
}
四、效果圖
全部猜完
中途退出
到此這篇關(guān)于 Java 實(shí)現(xiàn)猜字小游戲?qū)崙?zhàn)練習(xí)的文章就介紹到這了,想要了解更多相關(guān) Java 其他有趣好玩的實(shí)戰(zhàn)練習(xí)項(xiàng)目內(nèi)容,可以搜索W3Cschool以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持!