为了账号安全,请及时绑定邮箱和手机立即绑定

c语言的a+b问题?

c语言的a+b问题?

C
精慕HU 2019-02-14 15:11:57
我写的是这样的:#include<stdio.h>void main(){ int a,b;scanf("%d %d",&a,&b);printf("%d\n",a+b);}我自己测试是对的,为什么提交上去不对啊?
查看完整描述

2 回答

?
侃侃尔雅

TA贡献1801条经验 获得超15个赞

C语言实现如下:

12345678#include<stdio.h>void main(){    int a,b,r;    scanf("%d%d",&a,&b);//输入a、b。    r=a+b;//把a+b存入变量r。    printf("%d\n",r);//输出。}

样例输入:

12 15

样例输出:

27


查看完整回答
反对 回复 2019-03-07
?
白衣染霜花

TA贡献1796条经验 获得超10个赞

a+b你没有定义!可以这样试试。
#include<stdio.h>
void main()
{
int a,b,c;
scanf("%d %d",&a,&b);
c=a+b;
printf("%d\n",c);
}



查看完整回答
反对 回复 2019-03-07
  • 2 回答
  • 0 关注
  • 1450 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信