java编写小游戏代码
时间: 2023-07-09 17:30:27 浏览: 152
好的,我可以为您提供一个简单的 Java 小游戏代码,它叫做“猜数字游戏”(Guessing Game)。这个游戏的规则很简单:程序会随机生成一个数字,您需要猜测这个数字是多少,程序会根据您的猜测提示您猜测的数字是大于还是小于目标数字,直到您猜中为止。下面是代码示例:
```java
import java.util.Scanner;
import java.util.Random;
public class GuessingGame {
public static void main(String[] args) {
System.out.println("Welcome to the guessing game!");
System.out.println("I am thinking of a number between 1 and 100.");
System.out.println("Can you guess what it is?");
// 生成目标数字
Random random = new Random();
int targetNumber = random.nextInt(100) + 1;
// 开始猜测
Scanner scanner = new Scanner(System.in);
int guess;
do {
System.out.print("Enter your guess: ");
guess = scanner.nextInt();
if (guess < targetNumber) {
System.out.println("Your guess is too low.");
} else if (guess > targetNumber) {
System.out.println("Your guess is too high.");
} else {
System.out.println("Congratulations! You guessed the number.");
}
} while (guess != targetNumber);
scanner.close();
}
}
```
这个程序首先会生成一个随机数字,然后提示用户猜测数字,如果猜错了会给出相应的提示,直到用户猜中目标数字为止。这只是一个简单的示例,您可以根据自己的需求进行修改和扩展。
阅读全文