Board logo

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

作者: 陳弘修    時間: 2020-12-19 10:19     標題: 資料輸入 (五) - 參數傳值法

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

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

作者: 朱閎聿    時間: 2020-12-19 11:12

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

作者: 黃柏智    時間: 2020-12-19 11:14

  1. import java.util.Scanner;
  2. public class A02
  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.          }
  12.          else
  13.          System.out.print("未輸入參數");
  14.     }
  15. }
複製代碼

作者: 李穎俊    時間: 2020-12-19 11:14

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

作者: 王銘鴻    時間: 2020-12-19 11:15

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

作者: 陳莉榛    時間: 2020-12-19 11:17

  1. import java.util.*;
  2. public class Ch43
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       if(args.length>0)
  7.       {
  8.         System.out.print("您輸入的參數依序為:");
  9.         for(int i=0;i<args.length;i++)
  10.         System.out.println("args["+i+"]="+args[i]);


  11.       }else
  12.       System.out.print("你甚麼東西都沒輸入,真是謝囉");
  13.     }
  14. }
複製代碼

作者: 林羿丞    時間: 2020-12-19 11:23

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

作者: 張淯祺    時間: 2020-12-19 11:24

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

作者: 龔品誠    時間: 2020-12-26 09:47

  1. public class QwQ
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         if(args.length==0)
  6.         {
  7.             System.out.println("沒有資料");
  8.         }
  9.         else
  10.             for(int i=0;i<args.length;i++)
  11.             System.out.println(args[i]);
  12.     }
  13. }
複製代碼





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