Guest User

Untitled

a guest
Jan 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. if (x > 0)
  2. cout << "x is positive";
  3. else if (x < 0)
  4. cout << "x is negative";
  5. else
  6. cout << "x is 0";
Add Comment
Please, Sign In to add comment