- 1
If statment program
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. My program đ temp = int(input()) if temp >= 100: print("Boiling") What's wrong in these??
4 Answers