I'm trying to convert Fahrenheit to Celsius but there are errors but I don't know where is the mistakes.
The error is the part that I had bold it.
public class CelsiusConverterApp {
public static void main(String[] args) {
double Fahrenheit = 98.6;
//calculate Fahenheit to celsius
double Celsius = (5.0/9) * (Fahrenheit – 32.0) ;
System.out.println("Fahrenheit " + Fahrenheit + "is" + Celsius + "in Celsius");
}
}