Computer Science, asked by aparajetha9304, 10 months ago

Write down an algorithm to multiply three numbers

Answers

Answered by saainatha
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 toyinc836
1

Answer:

ABC

Explanation:

  1. 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