You can mail me Contact Me!

Recursive function to multiply two positive numbers

Recursive function to multiply two positive numbers

 Algorithm:

  1. Display a prompt for the user to enter the first number.
  2. Input the first number and store it in variable a.
  3. Display a prompt for the user to enter the second number.
  4. Input the second number and store it in variable b.
  5. Call the recursive multiply(a, b) function: a. If b is 0, return 0 (base case). b. Otherwise, return a + multiply(a, b - 1) (recursive case).
  6. Store the result of the recursive function call in variable result.
  7. Display the result of the multiplication.

Hello, dear reader! 👋

Thanks for visiting my blog! I’m a student just like you, sharing what I learn to help others with Python programming. I hope my posts are useful for your studies! 😊

If you find this post helpful, please leave a comment—even just a few emojis will make my day! 🐍✨ Your feedback keeps me motivated to create more content for everyone. 🚀

Happy programming!
Abhin Krishna, S01, EB Department, MEC


Pseudocode:

START
DISPLAY "Enter the first number: "
INPUT a
DISPLAY "Enter the second number: "
INPUT b
CALL multiply(a, b)
FUNCTION multiply(a, b)
    IF b = 0
        RETURN 0
    ELSE
        RETURN a + multiply(a, b - 1)
END FUNCTION
SET result = return value of multiply(a, b)
DISPLAY "The product of", a, "and", b, "is", result
END
Program:

# Recursive function to multiply two numbers
def multiply(a, b):
    # Base case: if one of the numbers is zero
    if b == 0:
        return 0
    # Recursive case: multiply by adding a to the result of multiplying a with (b - 1)
    return a + multiply(a, b - 1)

# Input two numbers
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))

# Calculate the product using recursion
result = multiply(num1, num2)

# Print the result
print(f"The product of {num1} and {num2} is {result}")
Flowchart:
flowchart TD A([Start]) --> B[/Display "Enter the first number:"/] B --> C[/Input a/] C --> D[/Display "Enter the second number:"/] D --> E[/Input b/] E --> F["Call multiply(a, b)"] F --> G{Is b == 0?} G -- Yes --> H[Return 0] G -- No --> I["Return a + multiply(a, b-1)"] I --> J["Store result = return value of multiply(a, b)"] J --> K[/Display "The product of", a, "and", b, "is", result/] K --> L([End])

Important!
If you find any mistakes in my code or flowchart, please comment below this post. I will be happy to correct them and clear up any doubts you may have.



Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
Site is Blocked
Sorry! This site is not available in your country.