w=float(input("请输入你的体重"))
h=float(input("请输入你的身高"))
BMI=m/(h*h)
if BMI<=16.4:
print("低体重")
elif BMI<=22.7:
print("正常")
else:
print("超重")
print("BMI:",BMI)
阅读全部 | 2022年12月23日 14:53
a=float(input(“请输入长方形的长”))
b=float(input(“请输入长方形的宽”))
if a==b:
print(“这是正方形”)
else:
print(这是长方形)
s=a*b
print(“面积为:”,s)
阅读全部 | 2022年12月23日 14:42
a=float(input(“”))
b=float(input(“”))
if a==b:
print(“”)
s=a*b
print(“”,s)
阅读全部 | 2022年12月23日 14:38
r=float(input(“请输入圆的半径”))
a=3.14
S=a*r*r
print(“面积为”,s)
阅读全部 | 2022年12月21日 15:23
r=float(input(”请输入圆的半径”))
a=3.14
S=a*r*r
print(”面积为”,s)
阅读全部 | 2022年12月21日 15:11
r=float(input(”请输入圆的半径”))
a=3.14
S=a*r*r
print(”S”)
阅读全部 | 2022年12月21日 15:02
for x in (1,2,3)
阅读全部 | 2022年12月21日 14:54