-->
当前位置:首页 > 题库

PROGRAMMING:Find the minimum

Luz5年前 (2021-05-10)题库487
This problem requires programming to find out the minimum value of a given series of integers.
###Input format:
The input first gives a positive integer $$n $$on a line, followed by $$n $$integers separated by spaces.
###Output format:
Output the minimum value of $$n $$integers in the format of "Min = minimum" in one line.
###Input example:
```in
4 -2 -123 100 0
```
###Output example:
```out
min = -123
```






answer:If there is no answer, please comment