public class Temperature {
public static void main (String[] args) {
double temperaturaEnCelsius = 22.1;
double temperaturaEnFarenheit = (temperaturaEnCelsius * 1.8) + 32;
int resultadoEnteroFarenheit = (int)temperaturaEnFarenheit;
System.out.println("La temperatura en farenheit entera es de : " + resultadoEnteroFarenheit);
}
}