[C언어/C++] 10818: 최소, 최대

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
using namespace std;
 
int N = 0;
int a[1000000];
int i;
 
int main()
{
    ios::sync_with_stdio(false); 
    cin.tie(NULL); 
    cout.tie(NULL);
 
    while (1) {
        cin >> N;
        if (1 <= N && N <= 1000000break;
    }
 
 
    for (i = 0; i < N; i++) {
        while (1) {
            cin >> a[i];
            if (1000000 <= a[i] && a[i] <= 1000000break;
        }
 
    }
 
    int min = a[0];
 
    int max = a[0];
 
    for (int j = 0; j < N; j++) {
        if (min > a[j]) min = a[j];
        if (max < a[j]) max = a[j];
    }
 
    cout << min << ‘ ‘ << max << ‘\n’;
 
    return 0;
}
cs

관련글

제목 작성자 작성일