Board logo

標題: 107求平均值 [打印本頁]

作者: may    時間: 2012-2-11 09:48     標題: 107求平均值

程式執行時需同時帶入兩個參數.....
作者: TOM    時間: 2012-2-18 10:00

  1. public class jva107
  2. {
  3.         public static void main(String arg[])
  4.         {
  5.                 if(arg.length<2)
  6.                 {
  7.                 System.out.println("最少需輸入2個數字");
  8.                 return ;
  9.                 }
  10.         float tot=0;
  11.                 for(int i=1;i<arg.length;i++)
  12.                 {
  13.                 tot += Float.parseFloat( arg[i] );
  14.                 }
  15.         tot /= arg.length ;
  16.                 switch(arg[0])
  17.                 {       
  18.                         case"0":
  19.                         System.out.printf("平均值 = %.0f",tot);
  20.                         break;
  21.                         case"1":
  22.                         System.out.printf("平均值 = %.1f",tot);
  23.                         break;
  24.                         case"2":
  25.                         System.out.printf("平均值 = %.2f",tot);
  26.                         break ;
  27.                 }
  28.         }
  29. }
複製代碼

作者: johnson    時間: 2012-7-7 10:53

  1. public class jva107
  2. {
  3.         public static void main(String arg[])
  4.         {
  5.                 if(arg.length<2)
  6.                 {
  7.                 System.out.println("最少需輸入2個數字");
  8.                 return ;
  9.                 }
  10.         float tot=0;
  11.                 for(int i=1;i<arg.length;i++)
  12.                 {
  13.                 tot += Float.parseFloat( arg[i] );
  14.                 }
  15.         tot /= arg.length ;
  16.                 switch(arg[0])
  17.                 {        
  18.                         case"0":
  19.                         System.out.printf("平均值 = %.0f",tot);
  20.                         break;
  21.                         case"1":
  22.                         System.out.printf("平均值 = %.1f",tot);
  23.                         break;
  24.                         case"2":
  25.                         System.out.printf("平均值 = %.2f",tot);
  26.                         break ;
  27.                 }
  28.         }
  29. }
複製代碼





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