The Debugging Chronicles : "코드의 미학"
[코딩테스트] 4891: 행복 본문
https://codeup.kr/problem.php?id=4891
풀이
package test01;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class test01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
List<Integer> score = new ArrayList<>();
int n = sc.nextInt();
for (int i = 0; i <n; i++){
score.add(sc.nextInt());
}
int max = score.get(0);
for (int i = 0; i <n; i++){
if(max < score.get(i)){
max = score.get(i);
}
}
int min = score.get(0);
for (int i = 0; i <n; i++){
if(min > score.get(i)){
min = score.get(i);
}
}
System.out.println(max - min);
}
}
'JAVA > 코딩 테스트 합격자 되기 자바편' 카테고리의 다른 글
[MySQL] 중성화 여부 파악하기 (0) | 2024.11.21 |
---|---|
[MySQL] 이름에 el이 들어가는 동물 찾기 (0) | 2024.11.21 |
05 배열_문제 01_배열 정렬하기 (0) | 2024.07.02 |
1002 : [기초-출력] 출력하기02(설명) (0) | 2024.06.17 |
1001 : [기초-출력] 출력하기01(설명) (0) | 2024.06.17 |