Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. assert( (y >= 1.0 ) &&      // condition 1
  2.         (x <= 10 ) &&       // condition 2
  3.         (y <= 10.0) &&      // condition 3
  4.         (x > 0 ) &&         // condition 4
  5.         (y <= 14.0 - x ) && // condition 5
  6.         (! aStack.isFull()) // condition 6
  7. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement