public class test3 { public static void main(String[] args) { int index = 0; boolean 五未満 = true; do { index++; System.out.println(index); 五未満 = (index < 5); } while (五未満); System.out.println("終了しました。"); } } 実行結果 1 2 3 4 5 終了しました。 五未満だから 1 2 3 4 終了しました。 となると思うのですが、 どうしてでしょう。 解説のほどお願い申し上げます。
↧