public class Main { public static void main(String[] args) { System.out.println("Hello world!");
float temperatura = 35;
double fahrenheit = (temperatura*1.8)+32;
System.out.println(fahrenheit +" °F son los grados equivalentes a " + temperatura + "°C que ingresó" );
int fahrenheitEntero = (int) fahrenheit;
System.out.println(fahrenheitEntero + " °F redondeados");
}
}