.Write a program to store 5 numbers in an array and print the multiplication
table of the numbers placed at even subscript positions.
Answers
Answered by
1
Answer:
#To calculate Product of Five Numbers
#Of 5 Numbers
FirstNumber=int (input('First Number')) #The First Number
SecondNumber=int (input('Second Number')) #The Second Number
ThirdNumber=int (input('Third Number')) #The Third Number
FourthNumber=int (input('Fourth Number')) #The Fourth Number
FifthNumber=int (input('Fifth Number')) #The Fifth Number
Product=FirstNumber*SecondNumber*ThirdNumber*FourthNumber*FifthNumber #Multiplication of The First Number, The Second Number, The Third Number, The Fourth Number and the Fifth Number
print(Product)
Explanation:Execute this in python and see, it will surely work... Please mark as brainliest
Thank You.
Similar questions