answersLogoWhite

0

This has been answered twice recently: F=1.8 C + 32

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Program to convert given temperature from centigrade to Fahrenheit in pearl?

Here's a simple Perl program to convert a given temperature from Celsius to Fahrenheit: # Input temperature in Celsius my $celsius = 20; # Convert Celsius to Fahrenheit my $fahrenheit = ($celsius * 9/5) + 32; # Print the result print "$celsius degrees Celsius is equal to $fahrenheit degrees Fahrenheit\n"; You can replace the value of $celsius with any temperature you want to convert.


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)


Program to convert temperature from Fahrenheit to celsius?

subtract 40, multiply by 9/5, then add 40


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 convert degrees with celsius?

I use a little PC program for the temperature conversion. Scroll down to related links and look at "Conversion of Temperature Units".


Write a Cobol pgm to convert centigrade to Fahrenheit?

Certainly! Below is a sample COBOL program to convert temperature from Celsius to Fahrenheit: IDENTIFICATION DIVISION. PROGRAM-ID. TemperatureConverter. DATA DIVISION. WORKING-STORAGE SECTION. 01 CELSIUS-TEMP PIC 9(3). 01 FAHRENHEIT-TEMP PIC 9(3). PROCEDURE DIVISION. DISPLAY 'Enter temperature in Celsius: '. ACCEPT CELSIUS-TEMP. COMPUTE FAHRENHEIT-TEMP = (CELSIUS-TEMP * 9 / 5) + 32. DISPLAY 'Temperature in Fahrenheit is: ' FAHRENHEIT-TEMP. STOP RUN. This program will prompt the user to input a temperature in Celsius, perform the conversion to Fahrenheit, and then display the result.


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.


What is the flowchart and algorithm of a program that will convert an inputted number in Fahrenheit to its equivalent measure in Celsius?

burat na flow chart


How to convert an exe file to JPEG?

No you cannot. An .exe is an executable (a program)a .jpeg is an image (picture)You cannot convert a program into a picture just as you cannot rabbit a good into a temperature; they exist in different contexts.


Write a program to convert a 2 digit BCD number into hexadecimal number?

Write a program to convert a 2-digit BCD number into hexadecimal


Convert Fahrenheit to Celsius Codes in COBOL?

Identification division. Program-id. Environment division. Data division. Working-storage section. 77 f pic 9(3). 77 c pic 9(3)v99. 77 p pic z(3).z(2). Procedure division. Main-para. Display " enter fahrenheit temperature ". Accept f. Compute c rounded = ( f - 32 ) * 5 / 9. Move c to p. Display " temperature in degree celsius " p. Stop run.


How do you convert from program C?

Your question is inco