Board logo

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

作者: tonyh    時間: 2019-1-24 14:50     標題: 資料輸入 (五) - 參數傳值法

本帖最後由 tonyh 於 2019-1-24 15:17 編輯

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

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

作者: 孫焌仁    時間: 2019-1-24 15:15

本帖最後由 孫焌仁 於 2019-1-24 15:20 編輯
  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.          }
  11.     }
  12. }
複製代碼

作者: 林育鋐    時間: 2019-1-24 15:19

本帖最後由 林育鋐 於 2019-1-24 15:25 編輯
  1. public class Ch11
  2. {
  3.     public static void main(String args[])
  4.     {
  5.        if(args.length>0){
  6.        System.out.println("您剛輸入的參數依序為...");
  7.        for(int i=0;i<args.length;i++)
  8.            System.out.println("args["+i+"]="+args[i]);
  9.          }
  10.     }
  11. }
複製代碼

作者: 趙一鳴    時間: 2019-1-24 15:19

  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.             {
  10.                 System.out.println("args["+i+"]="+args[i]);
  11.             }
  12.         }
  13.     }
  14. }
複製代碼

作者: 王騰立    時間: 2019-1-24 15:25

  1. import java.util.Scanner;
  2. public class Ch16
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          System.out.println("您剛輸入的參數依序為...");
  7.          for(int i=0; i<args.length; i++)
  8.              System.out.println("args["+i+"]="+args[i]);
  9.     }
複製代碼

作者: 楊貳鈞    時間: 2019-1-24 15:27

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

作者: 楊于暄    時間: 2019-1-24 15:28

  1. public class Ch27
  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.        }
  11.    }
  12. }
複製代碼





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