Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. // Determine how many times the code will be executed
  2. z=1;
  3. do
  4. {
  5. z=z+3;
  6. cout<<z;
  7. }
  8. while (z<10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement