这里写目录标题
- 一:猜数小游戏代码如下:
- 二:实战演示:
- 三:运行结果展示:
一:猜数小游戏代码如下:
package net.min.to1.p03;
import java.util.Random;
import java.util.Scanner;
public class Task2 {
public static void main(String[] args) {
int target,x;
Scanner sc = new Scanner(System.in);
Random random = new Random();
target = random.nextInt(100);
while (true){
System.out.println("输入一个[1,100]的整数:");
x = sc.nextInt();
if (x > target){
System.out.println("朋友,你猜高了~继续猜吧");
}else if (x < target){
System.out.println("朋友,你猜低了~继续猜吧");
}else{
break;
}
}
System.out.println("恭喜你猜对了,游戏结束!");
}
}
二:实战演示:
三:运行结果展示: