用jav写一个马里奥吃金币
时间: 2023-12-29 07:47:26 浏览: 140
好的,下面是用Java实现马里奥吃金币的代码:
```
import java.util.Scanner;
public class Mario {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int coins = 0;
System.out.println("欢迎来到马里奥吃金币游戏!");
while (true) {
System.out.println("请按下空格键来吃金币:");
String input = scanner.nextLine();
if (input.equals(" ")) {
coins++;
System.out.println("恭喜你吃到了第 " + coins + " 个金币!");
} else {
System.out.println("请按下空格键来吃金币!");
}
}
}
}
```
这个程序会在控制台上输出欢迎信息,并且通过不断读取用户输入的方式来模拟马里奥吃金币的过程。每当用户按下空格键时,程序会增加一个金币计数器,然后在控制台上显示恭喜信息。如果用户输入的不是空格键,则程序会提示用户再次按下空格键。
阅读全文