반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int max = -1000000;
int min = 1000000;
for (int i = 0; i < N; i++) {
int x = sc.nextInt();
if(x >= max) max = x;
if(x <= min) min = x;
}
System.out.println(min + " " + max);
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2577번 - 숫자의 개수 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 2562번 - 최댓값 (0) | 2021.09.17 |
[JAVA] 백준 1110번 - 더하기 사이클 (0) | 2021.09.17 |
[JAVA] 백준 10951번 - A+B - 4 (0) | 2021.09.17 |
[JAVA] 백준 10952번 - A+B - 5 (0) | 2021.09.17 |