导读 大家好,我是小典,我来为大家解答以上问题。c程序中switch函数,c语言switch函数例子很多人还不知道,现在让我们一起来看看吧!1、#includ...
大家好,我是小典,我来为大家解答以上问题。c程序中switch函数,c语言switch函数例子很多人还不知道,现在让我们一起来看看吧!
1、#include<stdio.h>
2、void main()
3、{
4、 double x,y;
5、 int flag;
6、 scanf("%lf",&x);
7、 if(x>-5&&x<0)flag=0;
8、 else if(x==0)flag=1;
9、 else if(x>0&&x<10)flag=2;
10、 switch(flag)
11、 {
12、 case 0:y=x;break;
13、 case 1:y=x-1;break;
14、 case 2:y=x+1;break;
15、 default:printf("wrong input ");
16、 }
17、 if(flag>=0&&flag<=2)printf("y=%g ",y);
18、}
本文到此讲解完毕了,希望对大家有帮助。