import java.util.Scanner; public class Main { public static void main(String[] args) {
// Ingresamos la temperatura por teclado
Scanner scanner = new Scanner(System.in);
System.out.print("Temperatura en Celsius: ");
double temperaturaCelsius = scanner.nextDouble();
// Cálculo de la temperatura en Fahrenheit
double temperaturaFahrenheit = (temperaturaCelsius*1.8)+32;
System.out.println(String.format(" * La temperatura %.2f grados Celsius es %.2f en grados fahrenheit.",
temperaturaCelsius, temperaturaFahrenheit));
// Cálculo de la temperatura en Fahrenheit
int temperaturaEnDecimal = (int) temperaturaFahrenheit;
System.out.println(String.format(" * La temperatura en grados Fahrenheit sin decimal es = %d.",
temperaturaEnDecimal));
}
}