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

PROGRAMMING:Base conversion

Luz5年前 (2021-05-10)题库378
Enter a decimal integer. Convert it to binary, octal and hexadecimal numbers.
###Input format:
Enter a decimal integer no more than 100.
###Output format:
Output the corresponding binary number, octal number and hexadecimal number in one line, separated by spaces.
###Input example:
Here is a set of inputs. For example:
```in
eight
```
###Output example:
The corresponding output is given here. For example:
```out
1000 10 8
```







answer:If there is no answer, please comment