Board logo

標題: 復習207 [打印本頁]

作者: jerryclass    時間: 2012-7-7 11:24     標題: 復習207

數值計算與判斷
作者: johnson    時間: 2012-7-7 11:29

  1. public class TQC207
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 int sum=0;
  6.         int odd=0;
  7.         int max=0;
  8.         int tmp=0;
  9.         int nums[]=new int[args.length];
  10.         try
  11.         {
  12.                 for(int i=0;i<args.length;i++)
  13.                 {
  14.                         tmp=Integer.parseInt(args[i]);
  15.                         nums[i]=tmp;
  16.                         sum+=tmp;
  17.                         if(tmp%2!=0)
  18.                         {
  19.                                 odd ++;
  20.                         }
  21.                         max=Math.max(tmp,max);
  22.                 }
  23.                 System.out.println("最大值="+max);
  24.                 System.out.println("奇數的個數="+odd);
  25.                 System.out.println("數字的總合="+sum);
  26.         }catch(Exception e)
  27.         {
  28.         }
  29.         }
  30. }
複製代碼

作者: kim    時間: 2012-7-7 11:49

  1. public class TQC207
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 int sum=0;
  6.         int odd=0;
  7.         int max=0;
  8.         int tmp=0;
  9.         int nums[]=new int[args.length];
  10.         try
  11.         {
  12.                 for(int i=0;i<args.length;i++)
  13.                 {
  14.                         tmp=Integer.parseInt(args[i]);
  15.                         nums[i]=tmp;
  16.                         sum+=tmp;
  17.                         if(tmp%2!=0)
  18.                         {
  19.                                 odd ++;
  20.                         }
  21.                         max=Math.max(tmp,max);
  22.                 }
  23.                 System.out.println("最大值="+max);
  24.                 System.out.println("奇數的個數="+odd);
  25.                 System.out.println("數字的總合="+sum);
  26.         }catch(Exception e)
  27.         {
  28.         }
  29.         }
  30. }
複製代碼





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