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

PROGRAMMING:Integer to string

Luz5年前 (2021-05-10)题库366
Convert an integer into a string and save it in reverse order in the character array. For example, if the original integer is 1234, it should be converted to the string "4321".
###Input format:
Enter a positive integer directly.
###Output format:
Directly output a string without any additional characters.
###Input example:
```in
one thousand two hundred and thirty-four
```
###Output example:
```out
four thousand three hundred and twenty-one
```






answer:If there is no answer, please comment