Chinaunix首页 | 论坛 | 博客
  • 博客访问: 20747
  • 博文数量: 9
  • 博客积分: 382
  • 博客等级: 一等列兵
  • 技术积分: 85
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-17 10:44
文章分类

全部博文(9)

文章存档

2010年(3)

2009年(6)

我的朋友
最近访客

分类: C/C++

2010-01-09 13:58:15

ceil()和floor()的函数原型:
 
 

double ceil(double x);
smallest integer not less than x
double floor(double x);
largest integer not greater than x

(1)假设x为4.4,则ceil(4.4)为5, floor(4.4)为4 。

(2)假设x为4,则ceil(4)为4, floor(4)为4。

(3)若想对x四舍五入,则

if(x > 0.0)
    return int(x + 0.5);
else
    return int(x - 0.5);


阅读(835) | 评论(0) | 转发(0) |
0

上一篇:产生伪随机数

下一篇:没有了

给主人留下些什么吧!~~