Computer Science, asked by deekshaqt, 1 year ago

algorithm to convert temperature from celsius to fahrenheit​

Answers

Answered by rakhithakur
9
Basic Algorithm : Convert Celsius to Fahrenheit

The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.

Answered by adventureisland
13

Read the input of temperature in Celsius then use step 3 to calculate Fahrenheit.

Algorithm to convert temperature from Celsius to Fahrenheit​ :

Step 1: Start

Step 2: You've been given the variable celsius, which represents a temperature in degrees Celsius ( Read the input of temperature in Celsius).

Step 3: Assign the Fahrenheit ( F=(9*C)/5+32 ) to the already specified variable Fahrenheit.

Step 4: A temperature that is the same as the temperature in Celsius. (The temperature is printed in Fahrenheit.)

Step 5: To convert the Celsius temperature to Fahrenheit, use the above-mentioned procedure.

Step 6: Stop

Similar questions