標題:
復習207
[打印本頁]
作者:
jerryclass
時間:
2012-7-7 11:24
標題:
復習207
數值計算與判斷
作者:
johnson
時間:
2012-7-7 11:29
public class TQC207
{
public static void main(String[] args)
{
int sum=0;
int odd=0;
int max=0;
int tmp=0;
int nums[]=new int[args.length];
try
{
for(int i=0;i<args.length;i++)
{
tmp=Integer.parseInt(args[i]);
nums[i]=tmp;
sum+=tmp;
if(tmp%2!=0)
{
odd ++;
}
max=Math.max(tmp,max);
}
System.out.println("最大值="+max);
System.out.println("奇數的個數="+odd);
System.out.println("數字的總合="+sum);
}catch(Exception e)
{
}
}
}
複製代碼
作者:
kim
時間:
2012-7-7 11:49
public class TQC207
{
public static void main(String[] args)
{
int sum=0;
int odd=0;
int max=0;
int tmp=0;
int nums[]=new int[args.length];
try
{
for(int i=0;i<args.length;i++)
{
tmp=Integer.parseInt(args[i]);
nums[i]=tmp;
sum+=tmp;
if(tmp%2!=0)
{
odd ++;
}
max=Math.max(tmp,max);
}
System.out.println("最大值="+max);
System.out.println("奇數的個數="+odd);
System.out.println("數字的總合="+sum);
}catch(Exception e)
{
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2