Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int x;
  6. x = 3;
  7. int y;
  8. y = 5;
  9. do {x + 3;
  10. } while (x != 1000);
  11. do {y + 5;
  12. } while (y != 1000);
  13.  
  14. cout<< x + y;
  15. cin.get();
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement