what is the diffrence between break statement and continue statement in java (3 marks)
Answers
Answered by
1
Answer:
this is your answer
Explanation:
Break statement resumes the control of the program to the end of loop and made executional flow outside that loop. Continue statement resumes the control of the program to the next iteration of that loop enclosing 'continue' and made executional flow inside the loop again.
Similar questions