Hola ami me tomo tiempo entender el metodo format, pero estoy contenta de lograrlo, aprendí algo muy nuevo para mí . Yo lo resolví de la siguiente manera: public class ConversionE1 { public static void main(String[] args) { double temperaturaEnCelsius = 14.4; double temperaturaEnFahrenheit = (temperaturaEnCelsius *1.8) +32; String tempActualEnFahrenheit = String.format("La temperatura de %f grados Celsius es equivalente a %f grados fahrenheit",temperaturaEnCelsius,temperaturaEnFahrenheit); System.out.println(tempActualEnFahrenheit); int tempActualEnFahrenheitEntero = (int) temperaturaEnFahrenheit; System.out.println("La temperatura actual en grados fahrenhit en numero entero es "+ tempActualEnFahrenheitEntero); } }