public class DesafioTemperatura {
public static void main(String[] args) {
double tempCelsius = 30.4;
double tempFahrenheit = (tempCelsius * 1.8) + 32;
int tempFahrenheitToInteger = (int) tempFahrenheit;
String message = """
Conversor de Temperaturas - Celsius para Fahrenheit
Celsius: %.1f °C
Fahrenheit: %.1f °F
Fahrenheit inteiro: %d
""".formatted(tempCelsius, tempFahrenheit, tempFahrenheitToInteger);
System.out.println(message);
}
}
Fiz usando o Text Blocks