Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. while (($i <= 8) || ($x <= 5)){
  2. $i++;
  3. $x++;
  4. }
  5.  
  6. while (($i <= 5) || ($x <= 8))
  7.  
  8. while (($i <= 8) && ($x <= 5)){
  9. $i++;
  10. $x++;
  11. }
  12.  
  13. while (($i <= 8) && ($x <= 5)){
  14. }
  15.  
  16. while($x<5 && $y<8) {//Your code here}
  17.  
  18. while (($i <= 5) XOR ($x <= 8))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement