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.
The program displays the value 5. It does not display the values 8 or 13.