This commit is contained in:
Samuel Vermeulen 2023-01-05 22:43:44 +01:00
parent 875f170beb
commit 411d9560a1

View File

@ -4,7 +4,7 @@ tempMax = int(input())
temp = 0
tempValid = True
while temp <= nbMesures and tempValid:
while temp < nbMesures and tempValid:
temperature = int(input())
tempValid = (tempMin <= temperature and temperature <= tempMax)
if tempValid: