I just started learning C# , i am trying a program which takes temperature in fahrenheit and converts into celsius and in the the third step converts the celsius back into fahrenheit(to verify the math) I have used the following code in order to perform the above function
Console.Write("Enter Your Temperature in fahrenheit : ");
float faren = float.Parse(Console.ReadLine());
float cel = (faren - 32)*(5/9);
float farenconv = 32 + (cel * 9 / 5);
Console.WriteLine("Orignal Temperature : " + faren);
Console.WriteLine("Converted in celsuis : " + cel);
Console.WriteLine("Converted Back in fahrenheit : " + farenconv);
Now the problem is i am getting cel = 0
as an output no matter, what i enter as fahrenheit but when i remove the *(5/9)
it works fine , does any one have any clue .