14. Determine how many times the body of loop will be executed.
x= 5;y= 60;
while(x<=y)
{
y= y/x;
System.out.println(y);
}
Attachments:
Answers
Answered by
0
Answer:
The body of the loop will be executed
2 times.
Explanation:
HOPE THIS ANSWER WILL HELP YOU
Answered by
0
Answer:
x= 5 , y = 60
therefore :- ( x→=y)
= x=5 = y= 60
=x
Similar questions