>>>1Q=float(input("请输入体重(kg):"))
SyntaxError:invalid syntax
a=5
a=a+1
a="world"
你能告诉小张同学变量a到底存储的是哪个量吗?( )
a=float(input("please input a:"))
b=float(input("please input b:"))
c=float(input("please input c:"))
if __________________________:
p=(a+b+c)/2
s=(p*(p-a)*(p-b)*(p-c))**0.5
print("三角形的面积是:",s)
else:
print("构不成三角形")