1) 1,2,3,4,5,6,7,8. 2) 2,4,6,8,10,12,14,16. 3) 8,7,6,5,4,3,2,1. 4) 1,1001,2001,3001,4001,5001,6001,7001,8001,9001. 5) 5,4,3,2,1,0,-1,-2,-3,-4,-5,-6. 6) 1,2,4,8,16,32,64,128,256. 7) 243,81,27,9,3. 8) 0,0,0,0,0,0,0,0,0,0,0, ..... (forever) 9) 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8 Hint: Use a a double and not an int Hint: It might print funny 10) 1.0, 0.5, 0.25, 0.125, 0.0625, 0.03125 11) Make a method that draws an X. 12) Make a method that draws a bullseye (three concrentric circles of different colors). for(x = 0; x < 4; x++) { System.out.println("X is " + x); }