java小游戏源代码
时间: 2023-03-04 17:49:32 浏览: 134
java小游戏 FallAndBlocks(源码)
5星 · 资源好评率100%
在这里给你一个 Java 小游戏的示例:
```
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int target = (int)(Math.random() * 100) + 1; // 随机生成 1 到 100 的目标数字
int numGuesses = 0; // 用户猜测次数
while (true) {
System.out.print("猜一个数字:");
int guess = scanner.nextInt();
numGuesses++; // 增加猜测次数
if (guess > target) {
System.out.println("你猜的数字太大了。");
} else if (guess < target) {
System.out.println("你猜的数字太小了。");
} else {
System.out.println("恭喜你,猜对了!你总共猜了 " + numGuesses + " 次。");
break; // 退出循环
}
}
}
}
```
这是一个简单的猜数字游戏,游戏会随机生成一个 1 到 100 的数字,然后玩家需要猜测这个数字。每次猜测后,游戏会告诉玩家猜测的数字是太大还是太小。当玩家猜到了正确的数字时,游戏就会结束,并告诉玩家猜了几次。
希望这个示例对你有帮助!
阅读全文