Print Powers of Two

From CompSciWiki
Revision as of 12:35, 6 April 2010 by LesE (Talk | contribs)

Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Remember that a while loop will execute infinitely until a specified condition is met. A for loop is similar except that the number of iterations is specified as an argument for the loop. Using both for and while loops, create a program that prints the powers of 2 from <math>2^0</math> <math>2^9</math>.


Your output should look something like this:

2 to the power of 0 is 1
2 to the power of 1 is 2
2 to the power of 2 is 4
2 to the power of 3 is 8
2 to the power of 4 is 16
2 to the power of 5 is 32
2 to the power of 6 is 64
2 to the power of 7 is 128
2 to the power of 8 is 256
2 to the power of 9 is 512

Do not use any of Java's Math class functions. .

 

SideSectionTitle goes here.

SideSection goes here.

Solution

Solution goes here.

Code

SolutionCode goes here. Please put your code in <pre> tags!

Back to the Program-A-Day homepage