- 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);
- }
-
-
- }
- }
複製代碼 |