作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
b) 将以下 switch 语句转换为 if...else 语句。
#include <stdio.h>
void main()
{
char option;
int a;
printf("a.Addition\n b.Subtraction\n c.Multiplication\n d.Division\n");
printf("Choose your option : ");
scanf("%c",&option);
switch(option)
{
case 'a':
case 'A': a=20+10;
printf("Addition process result:%d",a);
break;
case 'b':
case 'B': a=20-10;
printf("Subtraction process result:%d",a);
break;
case 'c':
case 'C': a=20*10;
printf("Multiplication process result:%d",a);
break;
case 'd':
case 'D': a=20/10;
printf("Division process result:%d",a);
break;
default: printf("Invalid option");
}
printf("\nEnd of program");
}
如何将其从 SWITCH 转换为 IF...ELSE?这是我考试的复习题谢谢您
最佳答案
switch
语句可以被视为一系列 if
/else
子句。这是一个可以帮助您解决具体问题的示例:
switch (x)
{
case 1:
case 2:
foo();
break;
case 3:
case 4:
bar();
break;
default:
blech();
break;
}
变成:
if (x == 1 || x == 2) // case 1:
{ // case 2:
foo();
}
else if (x == 3 || x == 4) // case 3:
{ // case 4:
bar();
}
else // default:
{
blech();
}
关于将以下 SWITCH 语句转换为 IF...ELSE 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21277622/
我是一名优秀的程序员,十分优秀!