Question: Write a program named FahrenheitToCelsius that accepts a temperature in Fahrenheit from a user and converts it to Celsius by subtracting 32 from the Fahrenheit
Write a program named FahrenheitToCelsius that accepts a temperature in Fahrenheit from a user and converts it to Celsius by subtracting 32 from the Fahrenheit value and multiplying the result by 5/9.
Display both values to one decimal place.
For example, if 88.5 degrees is input, the output would be: 88.5 F is 31.4 C
using System; using static System.Console; class FahrenheitToCelsius { static void Main() { // Write your main here } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
