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

PROGRAMMING:List elements in ascending order form integers

Luz5年前 (2021-05-10)题库593
Input a list in which each element is an integer between 0 and 9, and output an integer composed of all elements in the list sorted in ascending order.
###Input format:
Enter a list in which each element is an integer between 0 and 9.
###Output format:
Outputs an integer composed of all elements of the list sorted in ascending order.
###Input example:
Here is a set of inputs. For example:
```in
[5, 4, 7, 4, 1]
```
###Output example:
The corresponding output is given here. For example:
```out
fourteen thousand four hundred and fifty-seven
```
###Input example:
Here is a set of inputs. For example:
```in
[0, 3, 4, 1]
```
###Output example:
The corresponding output is given here. For example:
```out
one hundred and thirty-four
```







answer:If there is no answer, please comment