dim babytemp(0 to 18) as decimal
dim maxtemp as decimal = 0
dim lotemp as decimal = 100
console.writeline("enter temp of baby:")
babytemp(count) = console.readline()
if babytemp(count)> 37.5 then
console.writeline("baby has high temperature")
if babytemp(count)>maxtemp then
else if babytemp(count)<36 then
console.writeline("baby has low temperature")
if babytemp(count)<lotemp then
console.writeline("baby status is ok")
console.writeline("the amount of times it went below and over the normal")
console.writeline("the maximum temp the baby reached")
console.writeline(maxtemp)
console.writeline("the minimum temp the baby reached")
console.WriteLine(lotemp)