c语言编写程序 输入两个整数,计算两数之和

 我来答
蓝瑟一身
推荐于2019-08-09 · TA获得超过4782个赞
知道小有建树答主
回答量:193
采纳率:83%
帮助的人:32.3万
展开全部
十六进制 顾名思义有16个基本元素。
那么因为阿拉伯数字只有10个 所以10进制大于等于10的 用16进制表示 才用到字母abcdef。

14(16)=1*16+4=20(10)
24(8)=2*8+4=20(10)

 方法一:
#include 
void main()
{
int a,b;
printf("Input two integers:");
scanf("%d%d",&a,&b);
printf("和:a+b=%d\n",a+b);
printf("差:a-b=%d\n",a-b);
printf("积:a*b=%d\n",a*b);
printf("商:a/b=%d\n",a/b);
printf("余数:a%b=%d\n",a%b);
}




  方法二:
#include <stdio.h>
int add(int a,int b){
    return a+b;
}
void main(){
    int a,b;
    printf("Please input the value of a:");
    scanf("%d",&a);
    printf("Please input the value of b:");
    scanf("%d",&b);
    printf("%d+%d=%d\n",a,b,add(a,b));
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式