CJCoding With Joseph

Number in Three Bases

An int n = 255 is given. Print it in decimal, hexadecimal, and octal on one line, separated by single spaces:

255 ff 377

Use the dec, hex, and oct stream manipulators.

Expected Output:

255 ff 377
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.