该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
import java.io.File;
import java.io.IOException;
import java.util.Random;
import java.util.Scanner;
public class Test {
boolean flag=true;
int count;
String word;
public static void main(String[] args) {
Test t = new Test();
Random random = new Random();
String[] words=new String[100];
int i=0;
try{
File file = new File("f:\\c.txt");
Scanner in = new Scanner(file);
while(in.hasNext()){
words[i]=in.next();
i++;
}
t.word = words[random.nextInt(i)];
int wordLenth = t.word.length();
t.guessWord(t.word,wordLenth);
}
catch(IOException e1){
e1.printStackTrace();
}
}
public void guessWord(String word,int wordLenth){
Test t = new Test();
Scanner input = new Scanner(System.in);
char[] star=getStar(wordLenth);
do{
System.out.print("(Guess) Enter a letter in word ");
for(int k = 0;k
System.out.print(star[k]);
}
System.out.print(" > ");
String guess = input.next();
char w = guess.charAt(0);
star=panDuan(w,star,word,t);
for(int k=0;k
if(star[k] == '*'){
t.flag=true;
break;
}
else{
t.flag=false;
}
}
}while(t.flag==true);
System.out.println("The word is "+word+" . You missed "+t.count+" time");
}
public char[] panDuan(char w ,char[] star,String word,Test t){
int m=0;
for(int i=0;i
char w1 = word.charAt(i);
if(w == w1){
star[i]=w;
m=1;
}
}
if(m==0){
System.out.println(w+" is not in the word!");
t.count++;
}
return star;
}
public static char[] getStar(int wordLenth){
char[] star = new char[50];
for(int j=0;j
star[j]='*';
}
return star;
}
}