write a basic program to print the product of three given numbera a b c
Answers
Answered by
0
Answer:
a=5
b=2
c=5
product =a*b*c
print("The product of the three integers is:", product)
Explanation:
I am writing a basic multiplication program in python. Here i declared three variables and product them in the product.
Attachments:
Answered by
0
Explanation:
REM PROGRAM TO DISPLAY SUM, PRODUCT AND AVERAGE OF THREE NUMBERS. INPUT “ENTER FIRST NUMBER”; A. ...
DECLARE SUB SUM (A, B, C) DECLARE SUB PROD (A, B, C) ...
SUB SUM (A, B, C) S = A + B + C. ...
SUB PROD (A, B, C) ...
SUB AVERAGE (A, B) ...
DECLARE FUNCTION SUM (A, B, C) ...
FUNCTION SUM (A, B, C) ...
FUNCTION PROD (A, B, C)
Similar questions