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

PROGRAMMING:minimum of array

Luz5年前 (2021-05-10)题库517
Input 10 integers and output the minimum and the location(subscript).
### Input:
10 integers seperated by space.
### Output:
Two integers separated by space, the first one is the minimum, the second one is the location
### Input sample:
```
9 2 3 5 1 8 7 6 3 4
```
### Output sample:
```
1 4
```






answer:If there is no answer, please comment