返回列表 發帖

資料輸入 (五) - 參數傳值法

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

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

  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 x=0; x<args.length; x++)
  9.                 System.out.println("args["+x+"]="+args[x]);
  10.         }else
  11.             System.out.println("未輸入任何參數");
  12.     }
  13. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表