Write down an algorithm to multiply three numbers
Answers
Answered by
10
Answer:
Algorithm:
Get 3 digits from the user or maintain 3 variables containing 3 digits you want to multiply. Use mathematical functions to get the result
Program in python:
num_one = int(input("Enter num one: "))
num_two = int(input("Enter num two: "))
num_three = int(input("Enter num three: "))
print(num_one*num_two*num_three)
Answered by
1
Answer:
ABC
Explanation:
- START,Get the first number=A, Get the second number=B, Get the third number=C, multiply A*B*C=ABC,Get the results=ABC, STOP,END
Similar questions