answersLogoWhite

0

algorithm

step1 start

step2 add 32 to Celsius temperature

step3 divide 9 by 5

step4 multiply answer with sum

step5 Fahrenheit temperature is obtained

step6 stop

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Earth Science

Write the algorithm for the conversion of temperature from Celsius scale to Fahrenheit scale?

To convert temperature from Celsius to Fahrenheit: Multiply the Celsius temperature by 9/5. Add 32 to the result from step 1 to get the Fahrenheit temperature. Algorithm: Fahrenheit = (Celsius * 9/5) + 32.


Write a program to convert temperature degrees celsius to degrees fahrenheit?

Sure, here is a simple Python program to convert temperature from degrees Celsius to degrees Fahrenheit: celsius = float(input("Enter temperature in Celsius: ")) fahrenheit = (celsius * 9/5) + 32 print("Temperature in Fahrenheit: ", fahrenheit)


Write a shell script about a temperature convert Fahrenheit to celsium?

echo "*** Converting between the different temperature scales ***" echo "1. Convert Celsius temperature into Fahrenheit" echo "2. Convert Fahrenheit temperatures into Celsius" echo -n "Select your choice (1-2) : " read choice if [ $choice -eq 1 ] then echo -n "Enter temperature (C) : " read tc # formula Tf=(9/5)*Tc+32 tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc) echo "$tc C = $tf F" elif [ $choice -eq 2 ] then echo -n "Enter temperature (F) : " read tf # formula Tc=(5/9)*(Tf-32) tc=$(echo "scale=2;(5/9)*($tf-32)"|bc) echo "$tf = $tc" else echo "Please select 1 or 2 only" exit 1 fi


Write a Cobol pgm to convert centigrade to Fahrenheit?

Identification division. program-id.temperature11. environment division. data division. working-storage section. 77 ws-a pic 9(3)v9(2). 77 ws-b pic 9(3)v9(2). procedure division. main-para. display " enter degree temperature ". accept ws-a. compute ws-b rounded = ( 9/5 * ws-a ) + 32. display " temperature in fahrenheit celsius " ws-b. stop run..


Write C program for Accept temperature in degree Celsius and display the same in Fahrenheit?

Here is a simple C program that accepts temperature in degrees Celsius from the user and then converts and displays the equivalent temperature in Fahrenheit: #include <stdio.h> int main() { float celsius, fahrenheit; printf("Enter temperature in Celsius: "); scanf("%f", &celsius); fahrenheit = (celsius * 9/5) + 32; printf("Temperature in Fahrenheit: %.2f\n", fahrenheit); return 0; } You can compile and run this program to get the desired output.

Related Questions

Write the algorithm for the conversion of temperature from Celsius scale to Fahrenheit scale?

To convert temperature from Celsius to Fahrenheit: Multiply the Celsius temperature by 9/5. Add 32 to the result from step 1 to get the Fahrenheit temperature. Algorithm: Fahrenheit = (Celsius * 9/5) + 32.


Write a QBASIC program to convert a temperature in degrees Fahrenheit to degrees Celsius or vice versa depending on input?

CLS INPUT "Enter degrees in Celsius:";c INPUT "Enter degrees in Fahrenheit:";f a=(c*1.8)+32 b=5/9(f-32) PRINT c;"degree Celsius=" a;"degree Fahrenheit" PRINT f;"degree Fahrenheit=" b;"degree Celsius" end


How do you write equation of converting 59 degrees Fahrenheit into degrees Celsius?

59ºF = 15.0ºCUse this formula to convert degrees Fahrenheit (F) to degrees Celsius (C): (F - 32) / 1.8 = C


Write a program to convert temperature degrees celsius to degrees fahrenheit?

Sure, here is a simple Python program to convert temperature from degrees Celsius to degrees Fahrenheit: celsius = float(input("Enter temperature in Celsius: ")) fahrenheit = (celsius * 9/5) + 32 print("Temperature in Fahrenheit: ", fahrenheit)


How would you design a flowchart to convert Fahrenheit to Celsius and Celsius to Fahrenheit?

To design a flowchart for converting Fahrenheit to Celsius, you can start with an input symbol for the Fahrenheit temperature. Then, use a process symbol to apply the formula (°C = (°F - 32) x 5/9). Finally, output the result in Celsius. For converting Celsius to Fahrenheit, start with an input symbol for the Celsius temperature. Use a process symbol to apply the formula (°F = °C x 9/5 + 32). Finally, output the result in Fahrenheit.


What is 17.8 degrees Celsius in Fahrenheit?

You can use the online conversion offered by Google: in a Google search field (you may have one on your computer's browser already, otherwise go to google.com) write the number of degrees and the units ("C" or "F" or "K") then "in" and the units you want to convert to.Then hit Enter (sometimes you do not even have to do that!)__________________________________________________________= 32 + (17 x 9/5 )


Write a programme in c to convert Fahrenheit to celsius and vice versa?

double celsiusToFahrenheit(double degreesC) { return degreesC * 9.0 / 5.0 + 32.0; } double fahrenheitToCelsius(double degreesF) { return (degreesF - 32.0) * 5.0 / 9.0; } Or instead of having to divide and multiply you can simply use (Celsius +32)1.8. (C+32)1.8 Fahrenheit -32 divided by 1.8. F-32/1.8.


How to write equation of converting 41 degrees Fahrenheit into degrees Celsius?

Main formula: Celsius = (Fahrenheit - 32) / 1.8Celsius = (41 -32) / 1.8Celsius = 9 / 1.8Celsius = 5°


how to write a function that takes one argument F for Fahrenheit and returns the result in Celsius c the formula for the conversion is c plus F-3259?

double celsius (double fahrenheit) { return (fahrenheit - 32.) * 5. / 9.; }


Write an algorithm in c to convert an infix expression to a postfix expressionexecute your algorithm with the following infix expression as your input. m nk pgh a bc?

An algorithm can not be written with the following infix expression without knowing what the expression is. Once this information is included a person will be able to know how to write the algorithm.


Write a shell script about a temperature convert Fahrenheit to celsium?

echo "*** Converting between the different temperature scales ***" echo "1. Convert Celsius temperature into Fahrenheit" echo "2. Convert Fahrenheit temperatures into Celsius" echo -n "Select your choice (1-2) : " read choice if [ $choice -eq 1 ] then echo -n "Enter temperature (C) : " read tc # formula Tf=(9/5)*Tc+32 tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc) echo "$tc C = $tf F" elif [ $choice -eq 2 ] then echo -n "Enter temperature (F) : " read tf # formula Tc=(5/9)*(Tf-32) tc=$(echo "scale=2;(5/9)*($tf-32)"|bc) echo "$tf = $tc" else echo "Please select 1 or 2 only" exit 1 fi


How much is 98.3 Celsius in Fahrenheit?

You can use the online conversion offered by Google: in a Google search field (you may have one on your computer's browser already, otherwise go to google.com) write the number of degrees and the units ("C" or "F" or "K") then "in" and the units you want to convert to.Then hit Enter (sometimes you do not even have to do that!)