• 2022-06-06
    执行下列语句后结果是_________temperature = 50if temperature >= 100: print("too hot")elif temperature <= 40: print("too cold")else: print("just right")
    A: too hot
    B: too cold
    C: just right
    D: too hot too cold just right