Answer the question
In order to leave comments, you need to log in
How to recursively calculate the sum of numbers from a to b?
You need to recursively determine the sum of numbers in the range from a to b. I did it in a loop, but I need to do it recursively.
Here's what happened. I can't figure out what to write in the main method to make it work.
#include <iostream>
using namespace std;
int summa(int a, int b)
{
if (a==b) return b;
else a+summa(b,a);
}
int main()
{
int a,b;
cin>>a>>b;
cout<<summa(a,b);
return 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question