计算矩形面积_其他

 

代码:

long = float(input("请输入该矩形的长度:" )
width= float(input("请输入该矩形的宽度:" ))
area = long*width
print("该矩形的面积为:" +str(area))