About 14,800,000 results
Open links in new tab
  1. Product of 2 Numbers using Recursion - GeeksforGeeks

    Mar 17, 2025 · To find the product of two numbers x and y using recursion, you can use the following approach: Base Case: If y=0, return 0 (since any number multiplied by 0 is 0). …

  2. c - How to multiply 2 numbers using recursion - Stack Overflow

    Oct 20, 2018 · Given that multiplication is repeated addition of a b times, you can establish a base case of b == 0 and recursively add a, incrementing or decrementing b (depending on b 's sign) …

  3. Exploring Recursive Methods to Multiply Two Numbers in Python

    Mar 7, 2024 · In Python, a common task might be to multiply two numbers, but what if we approached this problem using recursion instead of the standard multiplication operator? The …

  4. Multiply two numbers using recursion - csinfo360.com

    Sep 20, 2020 · Here is the source code of the C Program to Multiply two numbers using recursion.

  5. Python Program to Multiply Two Numbers Using Recursion

    Create a recursive function to say recur_mult which takes the two numbers as arguments and returns the multiplication of the given two numbers using recursion. Check if the first number is …

  6. Java Program to Multiply Two Numbers Using Recursion

    Apr 4, 2024 · In this article we are going to see how we can multiply two numbers using recursion by Java programming language. Java Program to Multiply Two Numbers Using Recursion

  7. How to Implement Recursive Multiplication in Python

    Feb 26, 2025 · Learn how to implement recursive multiplication in Python with this comprehensive guide. Explore various methods, including basic recursive multiplication, optimized techniques …

  8. Multiply two integers without using multiplication, division

    Jul 23, 2025 · To multiply x and y, recursively add x y times. Approach: Since we cannot use any of the given symbols, the only way left is to use recursion, with the fact that x is to be added to …

  9. Multiplication of two integers in C++ using recursion

    Learn how to find the multiplication of two numbers in C++. Here we use using recursion to find the product of two numbers in C++.

  10. Multiplication function with recursion in Python - Stack Overflow

    Sep 19, 2015 · I need to write the function mult ( n, m ) that should output the product of the two integers n and m. I am limited to using addition/subtraction/negation operators, along with …