如何用switch语句编写四则运算?要求输入运算符跟两个数字,直接输出结

如何用switch语句编写四则运算?要求输入运算符跟两个数字,直接输出结果==... 如何用switch语句编写四则运算?要求输入运算符跟两个数字,直接输出结果= = 展开
 我来答
寻秦记记
2016-10-18 · TA获得超过1040个赞
知道小有建树答主
回答量:1098
采纳率:100%
帮助的人:448万
展开全部
#include <stdio.h>
int main(int argc, char **argv)
{
double operand1;
double operand2;
char operator[1];
while (1)
{
printf("输入数值和运算符(数值->运算符->数值):");
scanf("%lf%c%lf", &operand1,&operator[0], & operand2);
switch (operator[0])
{
case '+': printf("%.2lf\n", operand1 + operand1);
break;
case '-': printf("%.2lf\n", operand1 - operand2);
break;
case '*': printf("%.2f\n", operand1 * operand2);
break;
case '/': if (operand2 == 0)
{
printf("invalid operand!\n");
break;
}
printf("%.2f\n", operand1 / operand2);
break;
default: printf("unknown operator\n");
break;
}
}
}
秆林亟
2016-10-18 · TA获得超过234个赞
知道答主
回答量:245
采纳率:0%
帮助的人:124万
展开全部
#include#includeintmain(){intnumOne=0;intnumTwo=0;intresult=0;charoperator;cin>>a;cin>>b;cin>>operator;switch(operator){case"+":sum=numOne+numTwo;break;case"-":sum=numOne-numTwo;break;case"*":sum=numOne*numTwo;break;case"/":sum=numOne/numTwo;break;default:break;}cout<<"Theresultis:"<
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式