A
A
Alexander Malakhovskiy2015-02-03 14:04:51
C++ / C#
Alexander Malakhovskiy, 2015-02-03 14:04:51

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

2 answer(s)
A
Alexander Taratin, 2015-02-03
@zok1995

https://ideone.com/VXfoqI

A
AxisPod, 2015-02-03
@AxisPod

int sum(int a, int b) {
  return a == b? b : a + sum(a + 1, b);
}

But it would be worth learning Russian.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question