Board logo

標題: 資料輸入 (五) [打印本頁]

作者: tonyh    時間: 2012-12-15 16:07     標題: 資料輸入 (五)

參數傳值法
  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. }
複製代碼

作者: 尤泓鈞    時間: 2012-12-15 16:10

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

作者: t2364705    時間: 2012-12-15 16: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. }
複製代碼

作者: 劉漢文    時間: 2012-12-15 16:13

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

作者: t3742238    時間: 2012-12-15 16:15

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

作者: lon    時間: 2012-12-15 16:15

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

作者: 蔡昀佑    時間: 2012-12-15 16:17

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

作者: 粘靖瑜    時間: 2012-12-15 17:53

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

作者: 粘靖瑜    時間: 2012-12-15 18:12

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

作者: 黃博鴻    時間: 2012-12-17 17:40

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





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