Quantcast
Channel: 質問!ITmedia 新着質問(Java/253)
Viewing all articles
Browse latest Browse all 2439

何故5までなのでしょうか?

$
0
0
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 終了しました。 となると思うのですが、 どうしてでしょう。 解説のほどお願い申し上げます。

Viewing all articles
Browse latest Browse all 2439

Trending Articles