Give the output of the following: int a=5;
while(true)
{
System.out.print(a);
a=a+2;
if(a>=10)
break;
Answers
Answered by
1
Answer:
the output will be 5,7,9
Similar questions