Develop a program to get the temperature and print the following status according to the given temperature by using else if ladder statement.
Answers
Answered by
0
Answer
temperature = input()
if temperature > "25":
print("it is hot")
elif temperature < "25":
print("it is cold")
else:
print("It is normal")
please mark me brainliest.
Similar questions