If you ran the following program, what lines would be included in its output?
class Question { public static void main(String[] args) { int i, j; for (i = 0, j = 0; i + j < 20; ++i, j += i--) { System.out.println(i + j); } } }
A, B, and C.
The program displays the values 5, 8, and 13.