write a program to read base/ length width & hight of a parallelogram and calculate area and perimeter
Answers
Answered by
1
Answer:
b=float(input("Enter base of parallelogram:"))
w=float(input("Enter width of parallelogram:"))
l=float(input("Enter length of parallelogram:"))
h=float(input("Enter height of the parallelogram:"))
area=b*h
print("Area= ",area)
Explanation:
Similar questions