program should compute and output all of the "powers of two" from 2 to the 0th power, up through 2 to the 10th power. Your output should look like the following:
2 to the 0 power is: 1.0
2 to the 1 power is: 2.0
2 to the 2 power is: 4.0
2 to the 3 power is: 8.0
2 to the 4 power is: 16.0
2 to the 5 power is: 32.0
2 to the 6 power is: 64.0
2 to the 7 power is: 128.0
2 to the 8 power is: 256.0
2 to the 9 power is: 512.0
2 to the 10 power is: 1024.0
In order to compute the power, you can use a method that is already a part of Java: Math.pow(2, x) where x represents the exponent.