概述
在switch case 语句中能否使用continue 关键字?为什么?
#include <stdio.h>
int main()
{
int a;
printf("input integer number: ");
scanf("%d",&a);
switch (a)
{
case 1:printf("Mondayn");
case 2:printf("Tuesdayn");
case 3:printf("Wednesdayn");
case 4:printf("Thursdayn");
continue;
case 5:printf("Fridayn");
case 6:printf("Saturdayn");
case 7:printf("Sundayn");
default:printf("errorn");
}
return 0;
}
编译不通过!!!
答:
1)不能,除非外面有循环。
2)continue语句的作用是跳过循环本中剩余的语句,并到循环末尾。
3)continue语句只用在for、while、do-while等循环体中, 常与if条件语句一起使用, 用来加速循环。
最后
以上就是害怕御姐为你收集整理的在switch case 语句中能否使用continue 关键字?为什么?的全部内容,希望文章能够帮你解决在switch case 语句中能否使用continue 关键字?为什么?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复