public class ArrayTest {
public static void main(String[] args) {
//최고점수, 최저점수, 점수총합, 점수평균 구하기
int[] scoreList = {32, 40, 50, 30, 28, 100};
//점수배열
int maxScore = 0; //최고점수
int minScore = 100; //최저점수
int sumScore = 0; //점수총합
int avgScore; //점수평균
for(int i = 0; i<scoreList.length;i++) {
if(maxScore<scoreList[i]) {
maxScore=scoreList[i];
}
//최고점수 구하기
if(minScore>scoreList[i]) {
minScore=scoreList[i];
}
//최저점수 구하기
sumScore+=scoreList[i];
}
//총합구하기
avgScore = sumScore/scoreList.length;
//평균구하기
System.out.println(maxScore);
System.out.println(minScore);
System.out.println(sumScore);
System.out.println(avgScore);
}
}
'공부 > JAVA' 카테고리의 다른 글
2차배열 (각 반의 점수 얻기) + (향상된 for문) (2) | 2023.06.25 |
---|---|
2차배열 (이름넣고 불러오기) (0) | 2023.06.24 |
배열 (향상된 for문 이용하기) (0) | 2023.06.24 |
MyConnection (0) | 2023.06.20 |
JDBCTest (0) | 2023.06.20 |