โ Back to Loops
Question 103
While Loop: Print Powers of Two
While Loop: Print Powers of Two
Use a while loop to print the powers of two from 1 up to and including 16, each on its own line.
Expected output:
1
2
4
8
16Expected Output:
1 2 4 8 16
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.