CJCoding With Joseph

Binary Representation of a Number

Read a positive integer from input and use a loop to print its binary (base-2) representation, followed by a newline. For input 13 the exact output is:

1101

Repeatedly take % 2 for the next bit and /= 2, building the string from the least significant bit.

Expected Output:

1101
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
13\n
This input is automatically fed to your program's stdin
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.