Advertisement
Guest User

Untitled

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