Guest User

Untitled

a guest
Feb 15th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main () {
  5. float val1 = 1.6;
  6. printf ("Round up to %.1lfn", ceil(val1));
  7. return(0);
  8. }
Add Comment
Please, Sign In to add comment