x=5; y=60; while (x<=y) { y=y/x; System.out.println(y);} analyze-following-program-segment-determine-many-times-body-loop-will-executed-working
Attachments:
Answers
Answered by
1
Answer:
56 times
it will execute x=5 to x=60 so 56 times
Similar questions