📜  平行四边形的面积 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:13.419000             🧑  作者: Mango

代码示例2
#program for finding area of parallelogram
height = int(input("Enter the height of the parallelogram"))
base=int(input("Enter the base of the parallelogram"))
Area = height*base
print("Area is: ", (Area))
.........................................................
#output:
Enter the height of the parallelogram
Enter the base of the parallelogram
Area is:  
----------------------------------------------------------