Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. float arrotondaEccesso(float funny) {
  2.     return
  3.         ((int)funny - funny) < 0
  4.         ? (float)((int)funny + 1)
  5.         : funny;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement