Answer to Question #180882 in C++ for Darren

Question #180882

1.     Write a function named "sum_from_to" that takes two integer arguments, call them "first" and "last", and returns as its value the sum of all the integers between first and last inclusive. Thus, for example:


         cout << sum_from_to(4,7) << endl;  //will print 22 because 4+5+6+7 = 22

        cout << sum_from_to(-3,1) << endl; //will print -5 'cause (-3)+(-2)+(-1)+0 +1 = -5

        cout << sum_from_to(7,9) << endl;  //will print 22 because 7+8+9 = 24

        cout << sum_from_to(9,9) << endl;  //will print 9

1
Expert's answer
2021-04-15T02:56:47-0400
int sum_from_to(int first, int last)
{
    int i;
    int res = 0;
    for(i = first; i < last+1; ++i )
        res += i;
    return res;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

Assignment Expert
15.04.21, 14:09

Dear Darren the question was done according to specs

Darren
15.04.21, 11:04

can't work in c++

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS