Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int main()
  2. {
  3.     double x = 0;
  4.     double y = 1000000000;
  5.     while (y > x) {
  6.         if(y > x) {
  7.             x++;
  8.         }
  9.     }
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement