Question: do this in c + + as soon as possible. Given an integer, num, the following recursive definition determines the sum of the even digits

do this in c++ as soon as possible. Given an integer, num, the following recursive definition determines the sum of the even digits comprising the integer num, written sumevens/num): sumevens (num )={0, when num <=0 sunevens (n u n/10), when num >0 and num %10 is odd num %10+ sunevens ( nun /10), when num >0 and num %10 is ever . Write a recursive function, sumevens, that takes an integer as a parameter and retums the sum of the even digits comprising that integer. For example, sumevens(12345) returns 6.

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!