Output of:
<code>for (int i = 5; i > 0; i--) System.out.print(i); </code></pre>
- A
Infinite
- B
5432
- C
12345
- Dcheck_circle
54321
Explanation
i: 5, 4, 3, 2, 1.
AP Computer Science A· difficulty 3/5
Output of:
<code>for (int i = 5; i > 0; i--) System.out.print(i); </code></pre>
Infinite
5432
12345
54321
Explanation
i: 5, 4, 3, 2, 1.
Want 10 more like this — adaptive to your weak spots?