Board logo

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

作者: tonyh    時間: 2016-6-3 19:51     標題: 資料輸入 (五) - 參數傳值法

本帖最後由 tonyh 於 2016-6-3 20:14 編輯

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

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

作者: 沈子耕    時間: 2016-6-3 20:16

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

作者: 曾挺桂    時間: 2016-6-3 20:16

  1. import java.util.Scanner;
  2. public class Ch44
  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.     }
  10. }
複製代碼

作者: 李知易    時間: 2016-6-3 20:17

  1. public class Ch48
  2. {
  3.     public static void main(String args[])
  4.     {
  5.        System.out.println("你輸入的參數為:");
  6.        for(int i=0;i<args.length;i++)
  7.        {
  8.           System.out.println("args["+i+"]="+args[i]);
  9.        }
  10.     }        
  11. }
複製代碼

作者: 洪振庭    時間: 2016-6-3 20:18

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

作者: 梁和雋    時間: 2016-6-3 20:30

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

作者: 陳思惟    時間: 2016-6-3 20:30

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

作者: 黃璽安    時間: 2016-6-3 20:31

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

作者: 黃璽安    時間: 2016-6-3 21:11

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

作者: 黃柏維    時間: 2016-6-16 20:03

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





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