Write me a loop that goes 5,4,3,2,1. Write me a loop that draws the picture shown on the board. Write a loop that prints 1,2,3,4,5,6,7,8,9,10 on the screen in a vertical line. Write me a loop that draws ten concentric circles. (i.e. Like a bullseye) What does this loop do? int c = 0; while (c < 8) { g.drawRect(c,c,c,c); c = c * 2; } What does this code print? int c = 1; int m = 1; while (c < 4) { m = m * c; c++; } System.out.println("M is " + m);