Console.WriteLine("Enter the value of the baby's tempereature in degrees Celsius and press ENTER:")
For i = 0 To aTemp.Length - 1
aTemp(i) = Console.ReadLine()
Console.WriteLine("The temperature is too low!")
ElseIf 36 <= aTemp(i) And aTemp(i) <= 37.5 Then
Console.WriteLine("The temperature is perfect.")
ElseIf aTemp(i) > 37.5 Then
Console.WriteLine("The temperature is too high!")
For i = 0 To aTemp.Length - 1
Console.WriteLine("Your highest temperature is {0}, lowest temperature is {1} and the range is {2}.", nMax, nMin, nRange)
For i = 0 To aTemp.Length - 1
If aTemp(i) < 36 Or aTemp(i) > 37.5 Then
Console.WriteLine("The baby temperature has a difference of more than 1 degree Celsius.")
Console.WriteLine("The temperature has been out of suitable range for more than 2 times.")