Board logo

標題: 資料輸入 (五) - 參數傳值法 [打印本頁]

作者: 鄭繼威    時間: 2022-12-17 12:05     標題: 資料輸入 (五) - 參數傳值法

利用參數傳值法來做資料輸入。

  1. public class Ch46
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length>0)
  6.         {
  7.             System.out.println("你剛輸入的參數依序為...");
  8.             for(int i=0; i<args.length; i++)
  9.                 System.out.println("args["+i+"]="+args[i]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼

作者: 許宸瑀    時間: 2022-12-24 11:27

  1. public class Ch03
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length>0)
  6.         {
  7.             System.out.println("你剛輸入的參數依序為...");
  8.             for(int i=0; i<args.length; i++)
  9.                 System.out.println("args["+i+"]="+args[i]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼

作者: 鍾易澄    時間: 2022-12-24 11:29

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length>0)
  6.         {
  7.             System.out.println("你剛輸入的參數依序為...");
  8.             for(int i=0; i<args.length; i++)
  9.                 System.out.println("args["+i+"]="+args[i]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼

作者: 孫子傑    時間: 2022-12-24 11:34

  1. import java.util.*;
  2. public class Ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         if(args.length>0)
  7.         {
  8.            System.out.println("你剛輸入的參數依序為...");
  9.            for(int i=0;i<args.length;i++)
  10.                System.out.println("args["+i+"]="+args[i]);
  11.         }else
  12.         {
  13.            System.out.println("未輸入任何參數");
  14.         }

  15.     }
  16. }
複製代碼

作者: 高鋐鈞    時間: 2022-12-24 11:51

  1. public class Ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length>0)
  6.         {
  7.             System.out.println("你剛輸入的參數依序為...");
  8.             for(int i=0; i<args.length; i++)
  9.                 System.out.println("args["+i+"]="+args[i]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼

作者: 林紘憲    時間: 2022-12-31 10:02

  1. public class Ch46
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length>0)
  6.         {
  7.             System.out.println("你剛輸入的參數依序為...");
  8.             for(int i=0; i<args.length; i++)
  9.                 System.out.println("args["+i+"]="+args[i]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼





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