标题: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



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-118829-1-1.html




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

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