public class ConversorTemperatura {
public static void main(String[] args) {
double temp = 32;
double temperaturaFahrenheit = (temp * 1.8) + 32;
int temperatura = (int) temperaturaFahrenheit;
System.out.println("Temperatura: " + temperatura + "ºF");
}
}