ode
int
id Give output of following code
how many time loop will execute
inti;
for(int i = 5; i--){
if(i%2 ==1
continue
System.out.print i+" ");
}
Answers
Answered by
6
Answer:
5 loop will execute for the give loops and input we have given
Similar questions