返回列表 發帖
  1. import java.io.Console;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         for(int  x=100 ; x>=0 ; x--)
  7.         {
  8.             if(x%2!=0)
  9.                 System.out.println(x);
  10.         }
  11.     }
  12. }
複製代碼

TOP

返回列表