大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
求平均值与最大值
实现前需要懂得如何获取数组长度实现数组遍历
例如:
int[] array = {
2,3,6,8,18};
for(int i = 0 ; i<array.length; 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<scores.length;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 );
}
}
实现结果
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/191861.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...