Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Get accurate and detailed answers to your questions from a dedicated community of experts on our Q&A platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

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.


Sagot :

Trim
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.