10.0k views
2 votes
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.

User Shrichards
by
6.9k points

1 Answer

1 vote
The flow chart would go:

----------------------------
Start

Input C (Celsius)

IF C = -999 THEN END

Calculate F (Fahrenheit) using the formula

Output F

Goto next temperature (Input C)
----------------------------

The above needs tidying up and coding in the computer language you are using.
User SHASHANK MADHAV
by
7.1k points