Computer Science, asked by akash6121, 1 year ago

write a program in python in input to find perimeter of rhombus

Answers

Answered by adtya882
0

Answer:

side = int(input("Enter the side of Rhombus in cm: "))

Perimeter = 4*side

print ("Perimeter of Rhombus is", Perimeter)

Explanation:

Since all the Sides of Rhombus are equal this the perimeter is 4 times of ots side

Similar questions