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

PROGRAMMING:Decimal to hexadecimal

Luz5年前 (2021-05-10)题库434
###Task description
```
Program output decimal non negative integer into hexadecimal number sequence( You can't use recursive function. Of course, you haven't learned the function yet. Please use loop to solve it.)
```
###Input format:
```
There are several non negative integers, each of which represents a group of data and is not more than 268435456 of the 7th power of 16. The data are separated by spaces or carriage returns.
```
###Output format:
```
The hexadecimal sequence of each group of data is output in turn, and each output result occupies a single line, and the output alphanumeric is capitalized.
```
###Input example:
```in
25 36 0 1 1024
268435456 174 123
```
###Output example:
```out
nineteen
twenty-four
0
one
four hundred
ten million
AE
7B
```






answer:If there is no answer, please comment