Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.09 KB | None | 0 0
  1. if(x != 0)
  2. {
  3.     s = x / Math.abs(x);
  4. }
  5. else
  6. {
  7.    s = 0;
  8. }
  9. System.out.println(s);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement