Computer Science, asked by adbadwaik, 2 months ago

public class for_loop
{
public static void main (String arg[])
{
int i = 0;

for(i=0;i<10;i++)

if(i==5)


System.out.println(""+i);
}
}


will give output as 1
2
3
4
6
7
8
9 ??

Answers

Answered by purveshKolhe
1

Answer:

it will give output as 5.

Answer by PURVESH. PROGRAM WORLD

Similar questions