Daily Archives: February 1, 2020

break – continue – return – System.exit(0)

The break keyword is used to breaks(stopping) a loop execution, which may be a for loop, while loop, do while or for each loop. The break statement can also be used to jump out of a loop. for (int i = 0; i … Continue reading

Posted in Basic | Leave a comment