int i;
for(i=10; i>=0; i-=2);
System.out.println(i);
Answers
Answered by
0
Answer:
Output of the loop
I= 10
8
6
4
2
0
Answered by
2
int i;
for(i=10; i>=0; i-=2);
System.out.println(i);
output:-
10
8
6
4
2
0
Similar questions