1.设计数据结构:变量
1)char[] chs; //随机字符数组
2)char[] input; //用户输入的字符数组
3)int[] result; //对比的结果
4)int score; //得分
2.设计程序结构:方法
1)主方法:
public static void main(String[] args){
//...
}
2)生成随机字符数组chs:
public static char[] generate(){
char[] chs = new char[5];
//...
return chs;
}
3)对比:随机字符数组chs与用户输入的字符数组input
public static int[] check(char[] chs,char[] input){
int[] result = new int[2];
//...
return result;
}
3.设计算法:方法体
String str = "abc";
1)将字符串转换为字符数组
char[] input = str.toCharArray();
2)将字符串转换为大写字母
str = str.toUpperCase();
将字符串转换为大写字母
str = str.toLowerCase();
3)判断字符串内容是否相等
if(str.equals("ABC")){
}
整个猜字符的过程:
1)藏起来一个数chs
2)猜吧!接收用户输入的input
3)将chs与input进行比较:
3.1)猜对了,算分输出,break
3.2)猜错了,提示字符和位置对的个数,重复第2步
package ShiZhanYanLian;
import java.util.Scanner;
//猜字符游戏
public class Guessing {
//主方法
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
char[] chs = generate(); //获取随机字符数组
System.out.println(chs); //作弊
int count = 0; //猜错的次数
while(true){ //自造死循环
System.out.println("猜吧!");
String str = scan.next().toUpperCase(); //接收用户输入的字符串
if(str.equals("EXIT")){ //如果str的内容是EXIT
System.out.println("下次再来吧!");
break;
}
char[] input = str.toCharArray(); //将字符串转换为字符数组
int[] result = check(chs,input); //对比:随机字符数组与用户输入的字符数组
if(result[0]==chs.length){ //猜对了
int score = 100*chs.length-10*count; //1个字符100分,猜错一次扣10分
System.out.println("恭喜你,猜对了,得分:"+score);
break; //终止循环
}else{ //猜错了
count++; //猜错次数增1
System.out.println("字符对个数为:"+result[1]+",位置对个数为:"+result[0]);
}
}
}
//生成随机字符数组
public static char[] generate(){
char[] chs = new char[5]; //随机字符数组
char[] letters = { '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' }; //随机范围数组
boolean[] flags = new boolean[letters.length]; //开关数组(默认值为false)
for(int i=0;i
int index;
do{
index = (int)(Math.random()*letters.length); //随机下标(0到25)
}while(flags[index]==true); //当下标index对应的开关为true时,表示对应的字符已存过,则重新生成index
//当下标index对应的开关为false时,表示对应的字符未存过,则结束循环保存字符
chs[i] = letters[index]; //基于index下标获取对应的字符并赋值给chs中的每一个元素
flags[index] = true; //将下标index对应的开关修改为true,表示对应字符已存过
}
return chs;
}
//对比:随机字符数组chs与用户输入的字符数组input
public static int[] check(char[] chs,char[] input){
int[] result = new int[2]; //对比的结果,假设result[1]为字符对,result[0]为位置对,默认值都是0
for(int i=0;i
for(int j=0;j
if(chs[i]==input[j]){ //字符对
result[1]++; //字符对个数增1
if(i==j){ //位置对
result[0]++; //位置对个数增1
}
break; //剩余input元素不再参与本轮比较了
}
}
}
return result;
}
}