In the code editor, you are provided with an initial code that asks the user for an integer input and passes this to a function call of the digitMon() function. The digitMon() function is a recursive function which has the following description: Return type - int Name - digitMon Parameters - one integer Description - this function is a recursive function that computes the DigitMon of the passed integer. The digitMon() function is already partially implemented. Your task is to fill in the blanks to make it work.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter2: Elements Of High-quality Programs
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question

In C Language please..

6. DigitMon

by CodeChum Admin

When I was a kid, I used to play Digimon.

Now that I'm a programmer and I have this weird passion of digits, I want to combine them both to create the ultimate program: DigitMon!

This DigitMon program would take an integer input and would output the sum of all the digits of the number. For example, if the input is 243, the output would be 9 because 2 + 4 + 3 = 9. In this case, we say that the DigitMon of 243 is 9.

 

Instructions:

  1. In the code editor, you are provided with an initial code that asks the user for an integer input and passes this to a function call of the digitMon() function.
  2. The digitMon() function is a recursive function which has the following description:
    1. Return type - int
    2. Name - digitMon
    3. Parameters - one integer
    4. Description - this function is a recursive function that computes the DigitMon of the passed integer.
  3. The digitMon() function is already partially implemented. Your task is to fill in the blanks to make it work.

 

Input

1. Integer to be processed

 

Source Code:

#include<stdio.h>

int digitMon(int);

int main(void) {
    int n;

    printf("Enter n: ");
    scanf("%d", &n);

    printf("DigitMon of %d is %d", n, digitMon(n));

    return 0;
}

int digitMon(int n) {
    // TODO: Fill in the blanks
    if(n == __) {
        return __;
    } else {
        return (n % 10) + __;
    }
}

 

Output

Enter n: 243
DigitMon of 243 is 9
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage