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

PROGRAMMING:raise

Luz5年前 (2021-05-10)题库387
Enter a set of salary data and write it to the list. For wages less than 5000, increase 1.5 times. And output the wage data after the increase.
###Input format:
Enter several data, separated by spaces.
###Output format:
The data after the wage increase are separated by spaces. There are no spaces at the end.
###Input example:
```in
3000 4000 6000 8000 2000.5
```
###Output example:
```out
4500.0 6000.0 6000 8000 3000.75
```







answer:If there is no answer, please comment