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

PROGRAMMING:Minimum return to zero

Luz5年前 (2021-05-10)题库357
Input several positive integers (at least one) and output the result of subtracting the minimum value from each number.
###Input format:
Enter several positive integers on a line, separated by spaces.
###Output format:
Output the result of subtracting the minimum value from each number( Spaces between integers, no spaces at the end)
###Input example:
Here is a set of inputs. For example:
```in
4 5 67 3 99 2 7
```
###Output example:
The corresponding output is given here. For example:
```out
2 3 65 1 97 0 5
```







answer:If there is no answer, please comment