输入两个整数,进行加减乘除四则运算的c语言程序怎么写啊,拜托了~

 我来答
董俊锟djk
2012-05-27 · TA获得超过2552个赞
知道小有建树答主
回答量:1231
采纳率:66%
帮助的人:1030万
展开全部
#include<stdio.h>

void function(int a, int b)
{
printf("%d add %d = %d\n",a, b, a+b); //加法运算
printf("%d sub %d = %d\n",a, b, a-b); //加法运算
printf("%d mul %d = %d\n",a, b, a*b); //乘法运算
printf("%d div %d = %d\n",a, b, a/b); //除法运算
}

int main()
{
int a,b;
printf("please input a and b");
scanf("%d%d",&a,&b);
function(a,b);
return 0;
}
刀秀慧0C
2012-05-27 · TA获得超过220个赞
知道答主
回答量:166
采纳率:0%
帮助的人:97.4万
展开全部
#include<conio.h>
#include<windows.h>
#include<iostream>
using namespace std;
main(void)
{
float a,b;
char ch;
while(1)
{
cin>>a>>ch>>b;
//scanf("%d%c%d",&a,&ch,&b);
if(ch=='+')
//printf("= %f \n",a+b);
cout<<"="<<a+b<<endl;
if(ch=='-')
//printf("= %f \n",a-b);
cout<<"="<<a-b<<endl;
if(ch=='*')
//printf("= %f \n",a*b);
cout<<"="<<a*b<<endl;
if(ch=='/')
//printf("= %f \n",a/b);
cout<<'='<<a/b<<endl;
system("cls");
}
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
王启峰123
2012-05-28 · TA获得超过139个赞
知道答主
回答量:84
采纳率:0%
帮助的人:45.2万
展开全部
#include<iostream>
using namespace std;
main()
{
float a,b;
char ch;
while(1)
{
cin>>a>>ch>>b;
//scanf("%d%c%d",&a,&ch,&b);
if(ch=='+')
//printf("= %f \n",a+b);
cout<<"="<<a+b<<endl;
if(ch=='-')
//printf("= %f \n",a-b);
cout<<"="<<a-b<<endl;
if(ch=='*')
//printf("= %f \n",a*b);
cout<<"="<<a*b<<endl;
if(ch=='/')
//printf("= %f \n",a/b);
cout<<'='<<a/b<<endl;
system("cls");
}
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式