Question: Design a recursive function that returns the number of 1 ' s in the binary representation of an integer N ( N > 0 )

Design a recursive function that returns the number of 1's in the binary representation of an integer
N (N >0). Use the fact that this is equal to the number of 1's in the representation of N/2 plus 1,
if N is odd. Implement your function in a C or Java program and run it on three different integers
with 5,7 and 9(decimal) digits, respectively. Check the correctness of your results.
Hand in your program, your numbers, and the computed answers.

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 Programming Questions!