#include <iostream>
using namespace std;
int main()
{
int a, b, s = 0;
cin >> a >> b;
for (int i = a; i <= b; i++)
s += i;
cout << s << endl;
system("pause");
return 0;
}
В цикле for переменная i принимает все значения от A до B включительно, и эти значения суммируются в переменную S.
#include <iostream>
using namespace std;
int main()
{
int a, b, s = 0;
cin >> a >> b;
for (int i = a; i <= b; i++)
s += i;
cout << s << endl;
system("pause");
return 0;
}
В цикле for переменная i принимает все значения от A до B включительно, и эти значения суммируются в переменную S.