| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2156 人关注过本帖
标题:switch语句中case为空时的意义
取消只看楼主 加入收藏
xingjing314
Rank: 2
等 级:论坛游民
帖 子:160
专家分:32
注 册:2007-1-23
结帖率:94.74%
收藏
 问题点数:0 回复次数:2 
switch语句中case为空时的意义
一成绩单的程序
void main()
{float score;
printf("input score:\n");
scanf("%f",&score);
if(score>100||score<0)
{ printf("The score is error\n");
exit(0);
}
switch((int)score/10)
{case 0:
case 1:
case 2:
case 3:
case 4:
case 5: printf("Fail\n");
breke;
case 6: printf("pass\n");
breke;
case 7 :
case 8:printf("Good\n");
breke;
case 9:
case10:pintf("Excellent\n");
}
}
中的case7如何执行那?0-5中并没有breke跳出,如何执行那?还有exit(0)是终止程序的意思吗?
请高手赐教。
搜索更多相关主题的帖子: case switch score quot 语句 
2007-01-30 11:28
xingjing314
Rank: 2
等 级:论坛游民
帖 子:160
专家分:32
注 册:2007-1-23
收藏
得分:0 
70多分输出pass吗?

2007-01-30 11:53
xingjing314
Rank: 2
等 级:论坛游民
帖 子:160
专家分:32
注 册:2007-1-23
收藏
得分:0 

谢大家了


2007-01-30 18:27
快速回复:switch语句中case为空时的意义
数据加载中...
 
   



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

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