Find the best solutions to your problems with the help of IDNLearn.com's experts. Join our interactive community and get comprehensive, reliable answers to all your questions.
Sagot :
Answer:
total = 0
for i = 1 to 7
input temp
temp = temp * 1.8 + 32
total + = temp
average = total/7
print average
Explanation:
[Initialize total to 0]
total = 0
[Iterate from 1 to 7]
for i = 1 to 7
[Get input for temperature]
input temp
[Convert to degree Fahrenheit]
temp = temp * 1.8 + 32
[Calculate total]
total + = temp
[Calculate average]
average = total/7
[Print average]
print average
Thank you for using this platform to share and learn. Keep asking and answering. We appreciate every contribution you make. Your questions are important to us at IDNLearn.com. Thanks for stopping by, and come back for more reliable solutions.