Computer Science, asked by mbarfa7015, 8 months ago

Differentiate between break and continue statements using examples.

Answers

Answered by venugopal1488
1

Answer:

The volume of a sphere with radius r is 4/3πr3. Write a Python program to find

Answered by Anonymous
14

Answer:

Break Continue

When break is encountered the switch or loop execution is immediately stopped. When continue is encountered, the statements after it are skipped and the loop control jump to next iteration.

break statement is used in switch and loops. continue statement is used in loops only.

Flowchart: Flowchart:

Plz Plz Plz Mark me as BRAINLIEST

Similar questions