標題:
復習107
[打印本頁]
作者:
jerryclass
時間:
2012-7-7 11:21
標題:
復習107
求平均值
作者:
kim
時間:
2012-7-7 11:22
public class TQC107 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
if(args.length<2)
{
System.out.println("最少需輸入兩個數字");
return;
}
float tot=0;
for(int i=0;i<args.length;i++)
{
tot +=Float.parseFloat(args[i]);
}
tot /=args.length;
switch(Integer.parseInt(args[0]))
{
case 0:
System.out.printf("平均值=%.0f",tot);
break;
case 1:
System.out.printf("平均值=%.1f",tot);
break;
case 2:
System.out.printf("平均值=%.2f",tot);
break;
}
}
}
複製代碼
作者:
johnson
時間:
2012-7-7 11:24
public class TQC107
{
public static void main(String[] args)
{
if(args.length<2)
{
System.out.println("最少需輸入兩個數字");
return;
}
float tot=0;
for(int i=0;i<args.length;i++)
{
tot +=Float.parseFloat(args[i]);
}
tot /=args.length;
switch(Integer.parseInt(args[0]))
{
case 0:
System.out.printf("平均值=%.0f",tot);
break;
case 1:
System.out.printf("平均值=%.1f",tot);
break;
case 2:
System.out.printf("平均值=%.2f",tot);
break;
}
}
}
複製代碼
作者:
許逸瑋
時間:
2012-7-7 11:26
public class TQC107{
public static void main(String args[]){
float tot = 0 ;
for(int i=1;i<args.length;i++){
tot += Float.parseFloat(args[i]);
}
tot /= (args.length-1) ;
if(args[0].equals("0")){
System.out.printf("平均值:%f",tot);
}else if(args[0].equals("1")){
System.out.printf("平均值:%.1f",tot);
}else{
System.out.printf("平均值:%.2f",tot);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2