請先看一下面程式:(注:請輸入>0的整數)
main()
{
int a;
printf("please input a:\n");
scanf("%d",&a);
switch(a)
case 1:
printf("Input small than 3\n");
break;
case 2:
default:
printf("Error! Input is >=3");
}
看完上面的程式想必你已明白了許多,default的作用就是switch語句裡所有的case都不成立時所要執行的語句。
請先看一下面程式:(注:請輸入>0的整數)
main()
{
int a;
printf("please input a:\n");
scanf("%d",&a);
switch(a)
{
case 1:
printf("Input small than 3\n");
break;
case 2:
printf("Input small than 3\n");
break;
default:
printf("Error! Input is >=3");
}
}
看完上面的程式想必你已明白了許多,default的作用就是switch語句裡所有的case都不成立時所要執行的語句。