Question: Write a recursive function, sumDigits, that takes an integer as a parameter and returns the sum of the digits of the integer. please use the

Write a recursive function, sumDigits, that takes an integer as a parameter and returns the sum of the digits of the integer.

please use the templates below to make the program. ( C++ )

functions.cpp

#include

using namespace std;

inline void sumDigits(long long& sum, long long num) { //checkign base condtion here

if(num == 0)

return ;

else

{ //adding the last digit to the sum

sum += num%10;

num /= 10; //removing the last digit from num

sumDigits(sum, num); //calling recursively

}

______________________________________________________________________

main.cpp

#include #include "functions.cpp"

using namespace std;

int main() { long long num = 930567829100185; long long sum = 0;

sumDigits(sum, num);

cout << "The sum of the digits of " << num << " is: " << sum << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!