Computer Science, asked by binujoel800, 2 days ago

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 gd2136216
0

Answer:

The body of the loop will be executed

2 times.

Explanation:

HOPE THIS ANSWER WILL HELP YOU

Answered by a1abhiroy234
0

Answer:

x= 5 , y = 60

therefore :- ( x→=y)

= x=5 = y= 60

=x

Similar questions