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以下なら勝ち、30以下なら負け。私が望むのは、継続する問題です。「1」を書き込むと、負けたか勝ったかが表示され、プログラムを終了せずにもう一度プレイできます。
問題:
プログラムは '1' を書き込むだけで存在します。そして、プログラムを再起動しない限り、再びプレイすることはできません。
なぜそれをしているのですか?
私はJavaが初めてです。