麻烦帮我看一下我用if语句编写的四则运算 20

#include"stdio.h"voidmain(){inta,b,c;charch;printf("Pleaseinputtwonumber:",a,b);scanf... #include "stdio.h"
void main()
{
int a,b,c;
char ch;
printf("Please input two number:",a,b);
scanf("%d,%d",&a,&b);
printf("Please input an operator:",ch);
scanf("%c",&ch);
{
if(ch='+')
c=a+b;
printf("%d",c);
else if(ch='-')
c=a+b;
printf("%d",c);
else if(ch='/')
c=a+b;
printf("%d",c);
else (ch='*')
c=a+b;
printf("%d",c);
}
}
展开
 我来答
空皮碧情的板1d
2013-04-19 · TA获得超过336个赞
知道答主
回答量:125
采纳率:22%
帮助的人:47.5万
展开全部
1.你的最前面的两个printf函数,因为你没有引用某个变量或常数,改为printf("please enter tow numbs");后面那个也一样的。。。
2.后面if语句的大括号{},多余,不过应该也没事!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
来自月岩仪态万千的比目鱼
2013-04-19 · TA获得超过1571个赞
知道小有建树答主
回答量:1221
采纳率:50%
帮助的人:960万
展开全部
问题是什么?

scanf("%c",&ch);
{
if(ch=='+')
{
c=a+b;
printf("%d",c);
}
else if(ch=='-')
{
c=a+b;
printf("%d",c);
}
else if(ch=='/')
{
c=a+b;
printf("%d",c);
}
else if(ch=='*')
{
c=a+b;
printf("%d",c);
}
}

你等于和赋值没弄清楚,或者粗心了。
另外if语句没弄清楚,if之后不用大括号的情况是,只执行一条语句,你现在是执行2条,所以逻辑就出错了。最后一个else,没有if的情况下,就不能加条件了的。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
1124981644
2013-04-19 · TA获得超过1097个赞
知道小有建树答主
回答量:1020
采纳率:100%
帮助的人:482万
展开全部
#include "stdio.h"
void main()
{
int a,b,c;
char ch;
printf("Please input two number:a b\n");
scanf("%d %d",&a,&b);
getchar();

printf("Please input an operator ch:\n");
scanf("%c",&ch);
if(ch=='+') c=a+b;
else if(ch=='-') c=a-b;
else if(ch=='/') c=a/b;
else if(ch=='*') c=a*b;
printf("\n%d\n",c);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-04-19
展开全部
自己看,哪点错了!!
#include "stdio.h"
void main(){
int a,b,c;
char ch;
printf("Please input two number:");
scanf("%d,%d",&a,&b);
getchar();
printf("Please input an operator:\n");
scanf("%c",&ch);
if(ch=='+'){
c=a+b;
printf("%d",c);
}
else if(ch=='-') {
c=a-b;
printf("%d",c);
}
else if(ch=='/'){
c=a/b;
printf("%d",c);
}
else if(ch=='*'){
c=a*b;
printf("%d",c);
}
system("pause");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
和我重名是二比
2013-04-19
知道答主
回答量:15
采纳率:0%
帮助的人:2.2万
展开全部
怎么都是a+b??
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式