Advertisement
Guest User

Untitled

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