menu
QAmmunity.org
Login
Register
My account
Edit my Profile
Private messages
My favorites
Register
Ask a Question
Questions
Unanswered
Tags
Categories
Ask a Question
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
asked
Sep 4, 2019
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
Computers and Technology
middle-school
Lucas Cabrales
asked
by
Lucas Cabrales
7.9k
points
answer
comment
share this
share
0 Comments
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
2
Answers
3
votes
This is correct meaning the answer above Is correcyt
Avdgaag
answered
Sep 6, 2019
by
Avdgaag
7.3k
points
ask related question
comment
share this
0 Comments
Please
log in
or
register
to add a comment.
3
votes
Option D is correct. The loop should look like this:
for (int i = 0; i < 10; i += 2)
{
System.out.print(i + " ");
}
Shihao Xu
answered
Sep 8, 2019
by
Shihao Xu
7.2k
points
ask related question
comment
share this
0 Comments
Please
log in
or
register
to add a comment.
Ask a Question
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.
8.7m
questions
11.3m
answers
Other Questions
“What does it mean when we “rework” copyrighted material?”
Seven basic internal components found in a computer tower
describe an advance in technology that makes life more enjoyable. what discoveries contribute to this technology?
Disadvantages of using animation in advertising? advantages and disadvantages of using animation for education? advantages and disadvantages of using animation in entertainment?
Explain why binary codes are used to represent characters, numbers and symbols :)
Twitter
WhatsApp
Facebook
Reddit
LinkedIn
Email
Link Copied!
Copy
Search QAmmunity.org