218k views
5 votes
you were asked to write a program that converted temperatures from Fahrenheit to Celsius. Extend that program (copy-pasting your implementation) by adding in the reverse transformation. Sample output Hint: You can scan in multiple values of differing types using just one scanf statement.

User Txs
by
7.7k points

1 Answer

5 votes

Final answer:

To convert temperatures from Fahrenheit to Celsius, you can use the formula Celsius = (Fahrenheit - 32) * 5/9. To add the reverse transformation, which converts temperatures from Celsius to Fahrenheit, you can use the formula Fahrenheit = Celsius * 9/5 + 32.

Step-by-step explanation:

To write a program that converts temperatures from Fahrenheit to Celsius, you can use the following formula:

  • Celsius = (Fahrenheit - 32) * 5/9

To add the reverse transformation, which converts temperatures from Celsius to Fahrenheit, you can use the following formula:

  • Fahrenheit = Celsius * 9/5 + 32

You can scan in multiple values of differing types using just one scanf statement. Here's a sample code that demonstrates the conversion:

#include <stdio.h>

int main() {
float fahrenheit, celsius;

printf("Enter temperature in Fahrenheit: ");
scanf("%f", &fahrenheit);

celsius = (fahrenheit - 32) * 5/9;
printf("Temperature in Celsius: %.2f\\", celsius);

printf("Enter temperature in Celsius: ");
scanf("%f", &celsius);

fahrenheit = celsius * 9/5 + 32;
printf("Temperature in Fahrenheit: %.2f\\", fahrenheit);

return 0;
}

User Jether
by
8.2k points