私は現在Javaを使用している学生ですが、私は高低の推測ゲームをプログラミングするのに苦労しています。ループや "while"コードは使用できません。何かご意見は?これは私の今のものです:ループまたは "while"コードのない高または低ゲーム
public class FinalProject1
{
public static void main(String [] args)
{
System.out.println("Number Guessing Game 1-1000\nGuess a number");
guess();
}
public static int random()
{
int x = (int)(1000*Math.random() + 1);
return x;
}
public static void guess()
{
int num = random();
int tries = 0;
Scanner keyboard = new Scanner(System.in);
String inputString = keyboard.nextLine();
int input = Integer.parseInt(inputString);
if (input > num)
{
System.out.println("Guess a higher number");
inputString = keyboard.nextLine();
}
else if (input < num)
{
System.out.println("Guess a lower number");
inputString = keyboard.nextLine();
}
else if (num == input)
{
System.out.println("You Win");
}
}
}
を練習し続ける、初めにかなり困難な場合があります。 –
@ElliottFrischをクリックして詳細を確認するには、[こちら](https://stackoverflow.com/questions/44267747/high-or-low-game-without-looping-or-while-code)をクリックしてください。 –