Answer to Question #276516 in Python for jayalal

Question #276516

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-06T19:08:05-0500
sum = 0.0
count = 1
while count <= 10:
    temp = float(input())
    sum = sum + temp
    count = count + 1
avrg_temp = ((sum*9/5) + 320) / 10


if avrg_temp >= 97 and avrg_temp <= 99:
    print("Your body temperature is normal")
if avrg_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