Give the output for
int count = -4;
while(count <2)
{
System.out.print(count + " ”);
count = count +1;
}
Answers
Answered by
2
Answer:
Output
-3
-2
-1
0
1
It will execute till the condition is true
Similar questions