Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 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. for ( x; x < 1000; x += 3) ;
  10. for ( y; y < 1000; y += 5) ;
  11.  
  12. cout<< x + y;
  13. cin.get();
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement