一.数组的简单应用 1. 数组平均值 例子:求下列数字的平均值:1.0,2.4,3.5,4.3,5.1,6.8,7.2,8,9,10 package cn.haile.array; /** * 练习数组的应用 * * @author 小白 */ public class ArrayPractise { /** * @param args */ public static void main(String[] args) { double sum = 0; double aveSum; // 看看