返回列表 發帖
本帖最後由 黃宥鈞 於 2017-11-11 13:58 編輯
  1. public class Ch12
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         for(int i=0; i<=100; i+=2)
  6.             System.out.println(i);
  7.     }
  8. }
複製代碼

TOP

返回列表