import math
bottom = float(input('3'))
height = float(input('4'))
hypotenuse = math.sqrt(bottom**2+height**2)
print(bottom, height, hypotenuse)
为什么运行结果是3啊,打印的结果不应该是底,高,开平方的斜边吗?为什么print的结果只有3啊,求解,感谢
import math
bottom = float(input('3'))
height = float(input('4'))
hypotenuse = math.sqrt(bottom**2+height**2)
print(bottom, height, hypotenuse)
为什么运行结果是3啊,打印的结果不应该是底,高,开平方的斜边吗?为什么print的结果只有3啊,求解,感谢