2010-01-11から1日間の記事一覧

10. while文制御

10. while文制御 while文 lesson 026 class Lesson026 { public static void main(String args[]) { int count = 0; while (count <= 10000) { System.out.print("count = " + count + "\r"); count++; } } } 実行結果 L:\>java Lesson026 count = 10000 無…