public static void main (String[] args) {
int input = 0;
// Creating our objects
Scanner console = new Scanner(System.in);
Math math = new Math();
System.out.println("Welcome to Spin Game!");
System.out.println("Please write '1' to spin, or -1 to exit.");
//The input the user wrote..
input = console.nextInt();
if (input == 1) {
int number = math.calculate(math.number());
if (number < 30)
{
System.out.println("You just won the game!");
}
else
{
System.out.println("You lost..");
}
}
}
什么:
基本上是旋转游戏,如果数字低于30,你赢了,否则你输了。我想要的是,问题继续。一旦你写'1',它会告诉你是输还是赢,然后让你再玩一次,而不用结束程序。
问题:
该程序在写入“1”后才存在。除非我重新启动程序,否则我不能再玩了。
为什么这样做?
我是 Java 新手。