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

PROGRAMMING:Find the smallest of 10 integers

Luz5年前 (2021-05-10)题库431
Input 10 integers, save them into an array, find out the minimum value and output.
###Input format:
Enter 10 integers, separated by a space.
###Output format:
Output minimum and wrap.
###Input sample 1:
```in
1 2 3 4 5 6 7 8 9 0
```
###Output sample 1:
```out
0
```
###Input sample 2:
```in
0 1 2 3 4 5 6 7 8 9
```
###Output sample 2:
```out
0
```
###Input sample 3:
```in
1 2 3 0 4 5 6 7 8 9
```
###Output sample 1:
```out
0
```







answer:If there is no answer, please comment