double gradosCelsius = 10.8;
double gradosFahrenheit = ((gradosCelsius*1.8)+32);
double inversa = ((gradosFahrenheit-32)/1.8);
System.out.println(String.format(" %.1f° Celsius = %.2f° Fahrenheit",gradosCelsius,gradosFahrenheit
System.out.println(String.format(" %.2f° Fahrenheit = %.1f° Celsius",gradosFahrenheit,inversa));
Este es mi código, quedo atento a cualquier observación o sugerencia.