w3resource

Python Math: Multiply two integers without using the * operator in python

Python Math: Exercise-19 with Solution

Write a Python program to multiply two integers without using the * operator.

Sample Solution:

Python Code:

def multiply(x, y):
    if y < 0:
        return -multiply(x, -y)
    elif y == 0:
        return 0
    elif y == 1:
        return x
    else:
        return x + multiply(x, y - 1)

print(multiply(3, 5));

Sample Output:

15 

Flowchart:

Flowchart: Multiply two integers without using * operator in python

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to computing square roots using the Babylonian method.
Next: Write a Python program to calculate magic square.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/math/python-math-exercise-19.php