Computer Science, asked by toutsi819, 9 months ago

int i;
for(i=10; i>=0; i-=2);
System.out.println(i);

Answers

Answered by Padhai420
0

Answer:

Output of the loop

I= 10

8

6

4

2

0

Answered by Anonymous
2

int i;

for(i=10; i>=0; i-=2);

System.out.println(i);

output:-

10

8

6

4

2

0

Similar questions