標題:
107 求平均值
[打印本頁]
作者:
b790113g
時間:
2011-12-31 20:58
標題:
107 求平均值
public class test{
public static void main(String args[]){
//0 1 2 3
//1 1 2 3
//2 1 2 3
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