Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. while(x==true)
  2. {
  3. // Does not execute if x is false
  4. }
  5.  
  6.  
  7. do{
  8. // Executes once first, and then checks condition for second iteration
  9. }
  10. while(condition)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement