give the solution of the program int i; for(i=5;i>10;i++) System.out.println(i); System.out.println(i*4);
Answers
Answered by
11
Answer:
It will not print anything
Explanation:
Because the condition is false that is 5>10...
so when the condition becomes false it exits the loop here the first iteration is false...so it exits without printing anything...
Hope it is useful... pls follow me...and Mark as the brainlist. .....
Answered by
2
Answer:
the output is 20
the loop will execute 0 times
Similar questions