免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2017 | 回复: 2
打印 上一主题 下一主题

[C] 一个菜鸟关于c语言的初级问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-10-31 16:10 |只看该作者 |倒序浏览
#include <stdio.h>

int main(void)
{
  double pay = 0.0;                /* Weekly pay in dollars */
  double hours = 0.0;              /* hours worked          */
  int dollars = 0;                 /* Hourly rate - dollars */
  int cents = 0;                   /* ... and cents         */

  /* Get the Weekly pay */
  printf("Enter your weekly pay in dollars: ");
  scanf("%lf", &pay);

  /* Get the order quantity */
  printf("Enter the hours worked: ");
  scanf("%lf", &hours);

  /* Calculate the average hourly rate - dollars first */
  dollars = (int)(pay/hours);

  /* to get the cents we can subtract the dollars from the hourly rate           */
  /* and multiply by 100 to get cents. If we then add 0.5 and convert the result */
  /* back to an integer, it will be to the nearest cent.                         */
  cents = (int)(100.0*(pay/hours - dollars) +0.5);

  /* Output the average hourly rate */
  printf("Your average hourly pay rate is %d dollars and %d cents.\n", dollars, cents);
  return 0;
}
我想问一下,为什么要加上0.5呢?是不是涉及到精度的问题?先谢谢了

论坛徽章:
0
2 [报告]
发表于 2011-10-31 16:14 |只看该作者
100.0*(pay/hours - dollars)  是一个浮点型 ,如果直接强制转化成整型就会直接损失了小数部位的数据,加上0.5可以达到四舍五入的效果。。。

论坛徽章:
0
3 [报告]
发表于 2011-10-31 20:26 |只看该作者
本帖最后由 坐在地平线 于 2011-10-31 20:27 编辑

谢谢了,我明白了,呵呵
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP