请大神帮我找下程序错误
#include <stdio.h>int a,b;
int x,h;
printf("%d,%d,&a,&b");
scanf("%d,%d",&a,&b);
x=a;
h=0;
while(x<=b){
h+=x;
x++;
}
printf("a+(a+1)+(a+2)+...+b=%d\n",h);
system("PAUSE");
return 0;
}
题目为:输入两个整数a,b,求a,b之间所有整数之和(包括a和b)
[此贴子已经被作者于2016-10-30 16:57编辑过]