C语言编程 输入两个数,输出他们的和 日期:2017-10-13 13:11:07 人气:2 C语言编程 输入两个数,输出他们的和 #include void main(){ int a,b; scanf("%d%d",&a,&b); printf("a+b = %d",a+b);}