python/tempalert.py
2022-12-28 09:00:47 +01:00

11 lines
203 B
Python

nbMesures = int(input())
tempMin = int(input())
tempMax = int(input())
temp = int(input())
while temp <= tempMax and temp >= tempMin:
print("Rien à signaler")
temp = int(input())
print("Alerte !!")