简单的C语言题 编写一程序,要求输入x的值,输出y的值。要求分别用switch语句和嵌套的if语句写。

日期:2011-04-28 11:22:52 人气:2

简单的C语言题 编写一程序,要求输入x的值,输出y的值。要求分别用switch语句和嵌套的if语句写。

switch语句:: #include main() { int a=0,b; printf("请输入x的值:"); scanf("%d",a); switch(a) { case -5: case -4: case -3: case -2: case -1:b=a;break; case 0:b=a-1;break; case 1:case 2:case 3:case 4:case 5:case 6:case 7:case 8:cas
    A+
热门评论