Allow the user to enter a series of temperatures in degrees Celsius (C) ter-
minated by the input of –999. For each one, find the corresponding tem-
perature in degrees Fahrenheit (F). The conversion formula is:
F = 9 * C/5 + 32.

See Answers (1)

Accepted Answer

The flow chart would go:----------------------------StartInput C (Celsius)IF C = -999 THEN ENDCalculate F (Fahrenheit) using the formulaOutput FGoto next temperature (Input C)----------------------------The above needs tidying up and coding in the computer language you are using.

Related Question in Computers and Technology