请先看一下面程序:(注:请输入>0的整数)
main()
{
int a;
printf("please input a: ");
scanf("%d",&a);
switch(a)
{
case 1:
printf("Input small than 3 ");
break;
case 2:
printf("Input small than 3 ");
break;
default:
printf("Error! Input is >=3");
}
}
看完上面的程序想必你已明白了许多,default的作用就是switch语句里所有的case都不成立时所要执行的语句。