Algorithm and Flowchart to convert temperature from Celsius to Fahrenheit

[38523 views]




Celsius and Fahrenheit are two important scales to measure temperature. These are two important units of the temperature scale. The temperature in the centigrade scale is expressed in degrees Celsius. The temperature in the Celsius scale is denoted by °C. The temperature in the Fahrenheit scale is expressed in degrees Fahrenheit. The temperature in the Fahrenheit scale is denoted by °F. The relationship between these two scales is:

		(9/5)*C=F-32
		

Therefore, the formula to convert a given temperature from Celsius scale to Fahrenheit scale is:

		F=(9/5)*C+32
		

We will use this formula to convert a given temperature from Celsius scale to Fahrenheit scale.
For example:
Temperature in Celsius scale = 25 °C

		F=((9/5)×25)+32
		F=77
		
Equivalent temperature in Fahrenheit scale = 77.0 °F

In this article, we will understand the algorithm and flowchart to convert a given temperature from Celsius scale to Fahrenheit scale.

Algorithm to convert temperature from Celsius to Fahrenheit:

Step 1: Start Step 2: Read the value of temperature to be converted from the user Step 3: Assign the value to a variable, say ‘cel’ Step 4: Initialize f = 0 Step 5: f = ((5/9) * cel ) + 32 Step 6: Display f Step 7: Stop

Explanation:

We can covert a given temperature form Celsius to Fahrenheit using the formula: f = ((5/9) * cel ) + 32. In this algorithm, we will start off by taking the temperature to be convert into Fahrenheit as user input. This value is stored in a variable, say ‘cel’. We now initialize the temperature in Fahrenheit as 0, for further calculation purpose. Now, we will use the appropriate formula. Temperature in Fahrenheit is calculated by performing: f = ((5/9) * cel ) + 32. This value is displayed to the user.

Example:
Let us consider the temperature 20 °C:
cel = 20
(9/5) * 20 = 36
36 + 32 = 68 Therefore, f = 68 °F.

Let us consider the temperature 80 °C:
cel = 80
(9/5) * 80 = 144
144 + 32 = 176 Therefore, f = 176 °F.

Flowchart to convert temperature from Celsius to Fahrenheit:

Algorithm and flowchart to convert temperature from Celsius to Fahrenheit
Remove WaterMark from Above Flowchart

                 



Want to Learn How to write own Algorithm and Flowcharts



Want to test your logical skills in Algorithms?




Comments










Search
Have Technical Doubts????


Hot Deals ends in













Technical Quiz:

Search Tags

    Algorithm to convert temperature from Celsius to Fahrenheit

    Flowchart to convert temperature from Celsius to Fahrenheit

    Celsius to Fahrenheit Pseudocode