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

PROGRAMMING:Input three integers and output them in order from large to small.

Luz5年前 (2021-05-10)题库427
Input three integers and output them in order from large to small.
###Input format:
Three integers separated by spaces.
###Output format:
Output in descending order, separated by commas.
###Input example:
```in
2 1 3
```
###Output example:
```out
3,2,1
```







answer:If there is no answer, please comment