1.Start
2.Initialize Sum , Count to 1 ( Sum = 1 , Count = 1 )
3.Enter a temp
4.Add Temp to sum. ( Sum = Temp + Sum )
5.Increase Counter by 1 ( Count = Count + 1)
6.Repeat step 3 through 5 , Ten times
7.Calculat average temp in Fahrenheit (Average temp = (( sum * 9 / 5 ) + 32 ) / 10 )
8.If t Average temp is more than or equal to 97 and Average temp is less than or equal to 99 then Display “Your body temperature is normal”
9.Else Average temp is more than to 100.4 then Display “You have a fever caused by an infection or illness”
10.End.
sum = 1
count = 1
while count <= 10:
temp = float(input())
sum = temp + sum
count = count + 1
avg_temp = ((sum * 9 / 5) + 32) / 10
if 97 <= avg_temp <= 99:
print('Your body temperature is normal')
if avg_temp > 100.4:
print('You have a fever caused by an infection or illness')
Comments
Leave a comment