返回列表 發帖
回復 1# tonyh
  1. public class ch11x
  2. {
  3.   public static void main(String args[])
  4.   {
  5.     int i;
  6.     for (i=50 ;i<=150;i+=5)
  7.     {
  8.        System.out.println(i);

  9.     }
  10. }
  11. }
複製代碼

TOP

返回列表