igovasconcelos

Untitled

Aug 26th, 2020
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. boolean u = true;
  2. int v = 0;  
  3. while (u && v < 9) {
  4.   v = u + 2;
  5.   if  (v == 6)
  6.      u = false;
  7.  }
  8.  
Add Comment
Please, Sign In to add comment