Computer Science, asked by nilakshi2030, 8 months ago

Input the temperature of water in a beaker. In case the temperature is equal to 100 ther print "the water is boiling" otherwise "the water is not boiling".

Answers

Answered by anirudhkp2004
1

Answer:

Please give the details about which programming lang, anyway simple Python program is here:

********************************************************************************

a = eval(input("Enter the temperature of water(c):"))

if a >= 100:

    print("Water is boiling!!")

else:

    print("Water is not boiling...")

**********************************************************************************

#pls correct the intendation in line 3 and line 5

HOPE YOU UNDERSTAND THE LOGIC.

PLS MARK AS BRAINLIEST I YOU ARE  SATISFIED

Similar questions