CJCoding With Joseph

Powers of 2 up to 128

Use a loop to print the powers of 2 starting at 1, doubling each step, up to and including 128, one per line. The exact output is:

1
2
4
8
16
32
64
128

Multiply the counter by 2 each iteration.

Expected Output:

1
2
4
8
16
32
64
128
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.