返回列表 發帖

資料輸入 (五)

參數傳值法
  1. public class ch47
  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("第"+(i+1)+"個參數為: "+args[i]);
  9.          }
  10.     }
  11. }
複製代碼

  1. public class ch47
  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("第"+(i+1)+"個參數為: "+args[i]);
  9.      }
  10.      }
  11. }
複製代碼

TOP

  1. public class ch47
  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("第"+(i+1)+"個參數為"+args[i]);
  9.         }
  10.     }
  11. }
複製代碼

TOP

  1. public class ch47
  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("第"+(i+1)+"個參數為: "+args[i]);
  9.          }
  10.     }
  11. }
複製代碼

TOP

  1. public class ch47
  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("第"+(i+1)+"個參數為: "+args[i]);
  9.          }
  10.     }
  11. }
複製代碼

TOP

  1. public class ch47{
  2.   public static void main(String args[]){
  3.     System.out.println("您剛輸入的");
  4.     for(int i=0;i<args.length;i++){
  5.             System.out.println("第"+(i+1)+"個參數是"+args[i]);
  6.     }
  7.   }
  8. }
複製代碼
陳彥綸

TOP

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

TOP

  1. public class ch50
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         System.out.println(triangle(3,5));
  6.     }

  7.     public static float triangle(float x, float y)
  8.     {
  9.         return x*y/2;
  10.     }
  11. }
複製代碼

TOP

  1. public class ch47
  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("第"+(i+1)+"個參數為: "+args[i]);
  9.         }
  10.     }
  11. }
複製代碼

TOP

  1. public class ch47
  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("第"+(i+1)+"個參數為:"+args[i]);
  9.         }
  10.     }
  11. }
複製代碼

TOP

返回列表