12 lines
300 B
Python
12 lines
300 B
Python
temp = float(input("Temperatur: "));
|
|
|
|
if temp < 0:
|
|
print("Es ist eiskalt.");
|
|
elif temp >= 0 and temp <= 10:
|
|
print("Es ist kalt.");
|
|
elif temp > 11 and temp <= 20:
|
|
print("Es ist angenehm");
|
|
elif temp > 21 and temp <= 30:
|
|
print("Es ist warm");
|
|
elif temp > 30:
|
|
print("Es ist heiss");
|