โ Back to Loops
Question 341
Binary Representation of a Number
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 input13the exact output is: 1101 Repeatedly take% 2for the next bit and/= 2, building the string from the least significant bit.
Expected Output:
1101
Topics:
Loops
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.