public class Convertidor {
public static void main(String[] args) {
double celsius = 25.0;
double fahrenheit = (celsius * 1.8) + 32;
int fahrenheitSinDecimal = (int) fahrenheit;
System.out.println("La temperatura es de: " + fahrenheitSinDecimal +"°" + "F");
}
}