Board logo

標題: for 迴圈 (三) [打印本頁]

作者: 李泳霖    時間: 2021-8-20 21:06     標題: for 迴圈 (三)

顯示0~100間所有奇數, 從99開始倒數至1, 直向排列.
作者: 顏宇鋒    時間: 2021-8-21 20:22

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

作者: 張博翔    時間: 2021-8-21 20:31

  1. import java.io.Console;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         for(int i=100;i>=0;i--)
  7.         {

  8.         System.out.println(i);
  9.         }
  10.     }
  11. }
複製代碼

作者: 黃韋誌    時間: 2021-8-21 20:32

  1. import java.io.Console;
  2. public class Ch14
  3. {
  4.      public static void main(String args[])
  5.      {
  6.            Console c=System.console();
  7.            for(int i=99;i>=1;i-=2)
  8.            {
  9.            System.out.println(i);
  10.            }
  11.      }
  12. }
複製代碼

作者: 徐茂程    時間: 2021-8-21 20:33

  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. }
複製代碼

作者: 吳湘儀    時間: 2021-8-21 20:35

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

作者: 張博竣    時間: 2021-8-21 20:37

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

作者: 蔡旭恩    時間: 2021-8-21 20:38

  1. import java.io.Console;
  2. class Main
  3. {
  4.   public static void main(String[] args)
  5.   {
  6.     Console c=System.console();
  7.     for(int=100; i>=0; i-=2)
  8.     {
  9.       System.out.println(i);
  10.     }
  11.   }
  12. }
複製代碼

作者: 曾元瑜    時間: 2021-8-21 20:42

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

作者: 文硯    時間: 2021-8-21 20:45

  1. import java.io.Console;
  2. public class Ch16
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.           Console c=System.console();
  7.             for(int i=99; i>0; i--)
  8.             {
  9.                 System.out.println(i);
  10.             }
  11.     }
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2