using System;
class TemperatureConverter
{
static void Main()
{
//Tc = temperature in degrees Celsius
//Tf = temperature in degrees Fahrenheit
Console.WriteLine("What is the Celsius Temperature: ");
int Tf = int.Parse(Console.ReadLine());
float Tc;
Console.WriteLine("Temperature in Celsius is {0} ", Tc = (5 / 9) * (Tf - 32));
}
}
I guess i dont i have a long way to go into the whole thing - can't figure out what did i mess up.