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
1
Answer:
it will give output as 5.
Answer by PURVESH. PROGRAM WORLD
Similar questions
Geography,
30 days ago
Geography,
30 days ago
Physics,
2 months ago
English,
2 months ago
Computer Science,
9 months ago