Advertisements
Advertisements
Question
Analyse the given program segment and answer the following questions.
for (int m = 5; m <= 20; m += 5)
{
if (m % 3 == 0)
break;
else
if (m % 5 == 0)
System.out.println (m);
continue;
}
- Write the output of the program segment.
- How many times does the body of the loop get executed?
Answer in Brief
Solution
- 5
10 - 3 time
shaalaa.com
Is there an error in this question or solution?