大鱼吃小鱼Java小游戏
时间: 2023-07-09 20:34:06 浏览: 174
大鱼吃小鱼小游戏(Java课设)
5星 · 资源好评率100%
以下是一个简单的大鱼吃小鱼的 Java 小游戏,你可以在控制台中运行它:
```java
import java.util.*;
public class FishGame {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("欢迎来到大鱼吃小鱼游戏!");
System.out.println("请输入大鱼的初始体力值:");
int bigFish = sc.nextInt();
System.out.println("请输入小鱼的数量:");
int n = sc.nextInt();
System.out.println("请依次输入每只小鱼的体力值:");
int[] smallFish = new int[n];
for (int i = 0; i < n; i++) {
smallFish[i] = sc.nextInt();
}
Arrays.sort(smallFish);
int i = 0;
while (i < n && bigFish > smallFish[i]) {
bigFish += smallFish[i];
i++;
}
System.out.println("大鱼最多能吃" + i + "只小鱼!");
System.out.println("游戏开始!");
while (i < n) {
System.out.println("当前大鱼体力值为:" + bigFish);
System.out.println("小鱼的体力值为:" + smallFish[i]);
System.out.println("是否吃掉这只小鱼?(y/n)");
String choice = sc.next();
if (choice.equalsIgnoreCase("y")) {
bigFish += smallFish[i];
System.out.println("恭喜你,成功吃掉了一只小鱼!");
i++;
} else {
System.out.println("你选择了不吃掉这只小鱼!");
}
if (i == n) {
System.out.println("恭喜你,你已经吃掉了所有小鱼!");
} else if (bigFish <= smallFish[i]) {
System.out.println("很遗憾,你的大鱼没能吃掉这只小鱼!");
break;
}
}
System.out.println("游戏结束!");
}
}
```
运行游戏后,你需要输入大鱼的初始体力值和小鱼的数量,以及每只小鱼的体力值。程序会自动计算出大鱼最多能吃掉的小鱼数量,并开始游戏。在游戏中,程序会依次显示每只小鱼的体力值,你需要选择是否吃掉这只小鱼。如果你选择吃掉它,大鱼的体力值会增加这只小鱼的体力值,并显示成功吃掉一只小鱼的提示。如果你选择不吃掉这只小鱼,程序会继续显示下一只小鱼的体力值。如果你的大鱼没能吃掉某只小鱼或者已经吃掉了所有小鱼,游戏结束。
阅读全文