Question: Consider the following code: for (int i = 12; i > 2; i -= 2) { System.out.print(i + ); } What is the output?
Consider the following code:
for (int i = 12; i > 2; i -= 2) { System.out.print(i + " "); } What is the output?
12 10 8 6 4 2 0
10 8 6 4 2
10 8 6 4
12 10 8 6 4 2
12 10 8 6 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
