Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. for (...) {
  2.     // prepare cond1
  3.     if (cond1) {
  4.         // prepare cond2
  5.         if (cond2) {
  6.             // prepare cond3
  7.             if (cond3) {
  8.                 // process element
  9.             }
  10.         }
  11.     }
  12. }
  13.  
  14. for (...) {
  15.     // prepare cond1
  16.     if (!cond1) {
  17.         continue;
  18.     }
  19.  
  20.     // prepare cond2
  21.     if (!cond2) {
  22.         continue;
  23.     }
  24.  
  25.     // prepare cond3
  26.     if (!cond3) {
  27.         continue;
  28.     }
  29.  
  30.     // process element
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement