What will be printed when the following program is run?
public class Main { public static void main(String[] args) { for (int i = 12; i > 0; i -= 3) System.out.print(i); System.out.println(""); } }
Select the one correct answer.
(c)
The loop prints out the values 12, 9, 6, and 3 before terminating.