码迷,mamicode.com
首页 > 其他好文 > 详细

ceil向上取整函数

时间:2018-04-15 13:39:22      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:include   printf   int   double   clu   取整   amp   math.h   函数   

#include <stdio.h>
#include <math.h>

int main()
{

double x;
int y;
scanf("%lf", &x);
y = ceil(x);
printf("%d\n",y);
return 0;

}

ceil向上取整函数

标签:include   printf   int   double   clu   取整   amp   math.h   函数   

原文地址:https://www.cnblogs.com/pc-westy22Lx1000001000/p/8846741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!