需求: 猜数字游戏: 1.要求随机生成一个1到10的整数; 2.控制台接受用户的输入数字; 3.猜对了输出恭喜您猜对了;
* 4.猜错了,判断大了还是小了,小了提示小了,大提示大了; 5.若不想再猜用户输入0即可退出游戏;
*/
public class Practise02 {
public static void main(String[] args) {
Guess_Num(); // 猜数字游戏 调用猜数字方法
}
public static void Guess_Num() {
int n = new Random().nextInt(10) + 1; // 随机生成一个1到10的整数,赋值给变量n
while (1 > 0) {
System.out.println("*****欢迎进入猜数字游戏*****,");
System.out.println("按0退出游戏,按其她数字开始游戏): ");
int exit = new Scanner(System.in).nextInt();
if (exit == 0)
break;
while (2 > 0) {
System.out.print("请输入您猜的数字(1到10):");
int guessNum = new Scanner(System.in).nextInt(); // 定义一个guessNum 来存用户从后台输入的数字
if (guessNum >= 1 && guessNum <= 10) {
if (guessNum == n) {
System.out.println("恭喜您猜对了!!!");
break;
} else if (guessNum > n)
System.out.println("您猜的数字大了,请重猜:");
else
System.out.println("您猜的数字小了,请重猜:");
} else
System.out.println("请输入1到10的数:");
;
}
}
}
}
## **程序运行演示**
``![运行程序演示](https://img-blog.csdnimg.cn/20210412095358976.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3NhbnN1aTc3MDg4,size_16,color_FFFFFF,t_70)
`