119k views
3 votes
Set the following for loop header so that it prints the numbers, 0 2 4 6 8.

for (int i = ___; i ____; i ___ ) {
System.out.print(i + " ");
}
2, <= 10, ++
2, <= 10, += 2
0, <= 10, += 2
0, < 10, += 2
2, < 10, += 2

2 Answers

3 votes
This is correct meaning the answer above Is correcyt
User Avdgaag
by
7.3k points
3 votes
Option D is correct. The loop should look like this:

for (int i = 0; i < 10; i += 2)
{
System.out.print(i + " ");
}
User Shihao Xu
by
7.2k points