if-elif语句练习 weight = float(input('请输入体重公斤数')) height = float(input('请输入身高米数')) bmi = (weight/(height**2)) if bmi < 18.5:print('过轻') elif ……