Guest User

Untitled

a guest
Jul 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public double mysteriousDouble(final double d) {
  2. return ...;
  3. }
  4.  
  5. public int mysteriousInt(final int i) {
  6. return (int) mysteriousDouble(Double.valueOf(i));
  7. }
Add Comment
Please, Sign In to add comment