DavidNorgren

Untitled

Feb 19th, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for (a=0 a<10 a++) {
  2.     //Stuff
  3.     for (b=0 b<20 b++) {
  4.         //Stuff
  5.         for (c=0 c<30 c++) {
  6.             // Stuff
  7.             if (condition_to_break_all_loops) {
  8.                 b=20;
  9.                 a=10;
  10.                 break;
  11.             }
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment