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

PROGRAMMING:Input three integers, find out the minimum value and output

Luz5年前 (2021-05-10)题库633
Input three integers, find out the minimum value and output.
###Input format:
Enter three positive integers separated by a space.
###Output format:
Output minimum and wrap.
###Input sample 1:
```in
-1 1 0
```
###Output sample 1:
```out
-1
```
###Input sample 2:
```in
0 -1 1
```
###Output sample 2:
```out
-1
```
###Input sample 3:
```in
0 1 -1
```
###Output sample 3:
```out
-1
```







answer:If there is no answer, please comment