Computer Science, asked by bbdd1515, 11 months ago

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 cutypal2018gmailcom
1

Answer:

the output will be 5,7,9

Similar questions