プログラムが使用できる応答、具体的には 0 から 20 の数値を取得するまで、プログラムに質問を続けさせたいと考えています。このクラスには他にも多くのものがあるため、do-while が (変数に名前を付け、すべてのものに名前を付けました)。
public static void main(String[] args) {
do {
halp = 1;
System.out.println("What level is your fort?");
Scanner sc = new Scanner(System.in);
try {
fortLevel = Integer.parseInt(sc.nextLine());
}
catch(NumberFormatException e){System.out.println("Numbers only, 0-20"); halp = 0;
}
if(halp < 1) {
work = false;
}
if(halp > 1) {
work = true;
}
while(work = false);
}