121k views
3 votes
Write a program that prompts the user to input the temperature. This program should print "Freezing" if the temperature is less than zero, "Clear" if the temperature is between 10 and 25, "Too Hot" if the temperature is above 40, and "Out of Range" otherwise.

1 Answer

1 vote

Final answer:

To write a program that prompts the user to input the temperature and print a corresponding message based on the temperature value, you can use conditional statements.

Step-by-step explanation:

To write a program that prompts the user to input the temperature and print a corresponding message based on the temperature value, you can use conditional statements. Here's an example in Python:

temperature = float(input('Enter the temperature: '))

if temperature < 0:
print('Freezing')
elif temperature >= 10 and temperature <= 25:
print('Clear')
elif temperature > 40:
print('Too Hot')
else:
print('Out of Range')

In this program, the input() function is used to prompt the user for the temperature. Then, the temperature is compared with the given conditions using if, elif, and else statements to determine the appropriate message to print.

User Gabie
by
8.7k points