public class WhileLoop { public static void main(String[] args) { int i = 1; while (i <= 5) { System.out.println("while迴圈執行第" + i + "次。"); i++; }   } }