This is what i have i need for it to run and ask for celsius instead of fahrenheit but it is not doing it..
Dim celsius, fahrenheit As Double
Console.WriteLine("Please enter a celsius temperature:")
celsius = Convert.ToDouble(Console.ReadLine())
fahrenheit = celsius * 9 / 5 + 32
celsius = Math.Round(fahrenheit, 1)
Console.WriteLine(celsius & " C =" & fahrenheit & " F")
I am not understand this at all i am suppose also ask users to input a celsius degree for this part.its telling me i nedd to change formula to calculate the fahrenheit temp for this part.
fahrenheit = Math.Round(fahrenheit, 1)