高手帮我看看错在哪了,谢谢了!!!
我是学c++新手,今天做了道题,不知道错哪了,各位大侠帮我改下,谢谢了。题目是:编写一个要求用户输入两个整数的程序,该程序将计算并输出这两个整之间所有整数的和,例如,输入2和9,则程序将指出2—9之间所有整数的和为44
我的程序如下:
# include <iostream>
int main()
{using namespace std;
int a,b;
cout<<"Enter the first:";
cin>>a;
cout<<"Enter the last:";
cin>>b;
int c=a;
for(a;a<=b;a++)
{c=c+a;
a++;
}
cout<<c<<endl;
cin.get();
return 0;
}
谢谢啦!!!