| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 280 人关注过本帖
标题:高手帮看下下!!!
只看楼主 加入收藏
华夏聪哥
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-4-18
结帖率:0
收藏
已结贴  问题点数:20 回复次数:3 
高手帮看下下!!!
#include "stdio.h"
#include "conio.h"
#include "math.h"
main()
{
  int grade;
  long profit;
  int salary=500;
  printf("input profit");
  scanf("%ld",&profit);
  grade=(profit-1)/1000;
  switch(grade)
   {
    case 0:salary+=profit*0;break;
    case 1:salary+=profit*0.10;break;
    case 2:
    case 3:
    case 4:salary+=profit*0.15;break;
    case 5:
    case 6:
    case 7:
    case 8:
    case 9:salary+=profit*0.20;break;
    default:salary+=profit*0.25;
   }
  printf("salary is %.2d",salary);
    getch();
}
输入3000时得949  



#include "stdio.h"
#include "conio.h"
#include "math.h"
main()
{
  int grade;
  long profit;
  float salary=500;
  printf("input profit");
  scanf("%ld",&profit);
  grade=(profit-1)/1000;
  switch(grade)
   {
    case 0:salary+=profit*0;break;
    case 1:salary+=profit*0.10;break;
    case 2:
    case 3:
    case 4:salary+=profit*0.15;break;
    case 5:
    case 6:
    case 7:
    case 8:
    case 9:salary+=profit*0.20;break;
    default:salary+=profit*0.25;
   }
  printf("salary is %.2f",salary);
    getch();
}
输3000时得950.00
为什么???

搜索更多相关主题的帖子: default include profit 
2011-04-25 11:50
qq1023569223
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:湖南科技大学
等 级:贵宾
威 望:26
帖 子:2753
专家分:13404
注 册:2010-12-22
收藏
得分:7 
不同数据类型之间的隐式转换,导致精度的损失啊!不可预知的!

   唯实惟新 至诚致志
2011-04-25 13:09
张彬彬
Rank: 2
等 级:论坛游民
帖 子:17
专家分:10
注 册:2011-4-25
收藏
得分:7 
这???
2011-04-25 13:13
yue_shen_vs
Rank: 2
等 级:论坛游民
帖 子:19
专家分:37
注 册:2011-4-22
收藏
得分:7 
int 和float差很多的。。。。。
2011-04-25 13:18
快速回复:高手帮看下下!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015584 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved