Answer to Question #181282 in C++ for Darren

Question #181282

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 = 2

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

1
Expert's answer
2021-04-14T04:22:45-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

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS