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 <= 1000000) break; } for (i = 0; i < N; i++) { while (1) { cin >> a[i]; if (–1000000 <= a[i] && a[i] <= 1000000) break; } } 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 |