mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
22 lines
264 B
C
22 lines
264 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
int n, min = 2147483647;
|
||
|
|
||
|
scanf("%d", &n);
|
||
|
|
||
|
for (int i = 0; i < n; i++) {
|
||
|
int x;
|
||
|
|
||
|
scanf("%d", &x);
|
||
|
|
||
|
if (x < min) {
|
||
|
min = x;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
printf("%d\n", min);
|
||
|
|
||
|
return 0;
|
||
|
}
|