栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

JAVA 遍历数组求平均值与最大值

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

JAVA 遍历数组求平均值与最大值

求平均值与最大值

实现前需要懂得如何获取数组长度实现数组遍历
例如:

    int[] array = {2,3,6,8,18};  
    for(int i = 0 ; i  
    System.out.print(array[i] + ",");  
    }  

输出结果:2,3,6,8,18

求最大值时则采用擂台制现默认一个数为最大值(max)使用循环遍历数组中的每个数进行两两比较从而得出最大值。

实现代码

import java.util.Scanner;

public class Test6{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int[] scores = new int[sc.nextInt()];

        //循环给数组赋值
        for(int i = 0 ; i< scores.length;i++){
            scores[i] = sc.nextInt();
        }
        //在这里计算数组scores的平均值和最大值
        int sum = 0 ;
        int max = 0;
        for(int j = 0;j
            sum += scores[j];
            if(scores[j]>max){
                max = scores[j];
                continue;
            }
        }
        int avg = sum/scores.length;
        System.out.println("平均值:" +avg );
        System.out.println("最大值:" +max );
    }
}

实现结果

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/852058.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号