Answer to Question #276917 in Python for Sera

Question #276917

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.



1
Expert's answer
2021-12-08T16:30:14-0500
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')

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS