+ 1
Hi I need help with this
Write a program that checks if the water is boiling. Take the integer temperature in Celsius as input and output "Boiling" if the temperature is above or equal to 100. Sample Input 105 Sample Output Boiling
5 Respuestas
0
What have you tried?
* get input
* convert input to numeric type
* check if input >= 100: if yes, print Boiling
0
temp = int(input())
if temp>=100:
print("boiling")
0
See my response here:
https://www.sololearn.com/Discuss/3034683/?ref=app
DO NOT re-post the same question, please
0
Ok
0
Busted
*gta sound when you die*