Java程序来计算Java中数字的平均值
一组数字的平均值是它们的总和除以数量。可以定义为-
average = sum of all values / number of values
在这里,我们将学习如何以编程方式计算平均值。
算法
1. Collect integer values in an array A of size N. 2. Add all values of A. 3. Divide the output of Step 2 with N. 4. Display the output of Step 3 as average.
示例
public class AverageOfNNumbers {
public static void main(String args[]){
int i,total;
int a[] = {0,6,9,2,7};
int n = 5;
total = 0;
for(i=0; i<n; i++) {
total += a[i];
}
System.out.println("Average ::"+ total/(float)n);
}
}输出结果
Average ::4.8
热门推荐
5 短祝福语简短暖心
10 结婚祝福语粤语大全简短
11 晚上祝福语女生文案简短
12 法语妈妈生日祝福语简短
13 药厂开工祝福语大全简短
14 蛋糕节日祝福语简短英文
15 跨年的生日祝福语简短
16 文案祝福语英文短句简短
17 在家聚餐婚礼祝福语简短
18 学生节祝福语大全简短