回复 2楼 rjsp
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int a,b,sum;
scanf("%d,%d\n",&a,&b);
sum=a+b;
printf("sum is %d",sum);
return 0;
}
你好,这是我写的一段小代码,比如输入
1,2
得出来的结果只有1,他没有加起来,为什么会这样啊?