Escreva um programa que receba uma temperatura em graus Fahrenheit e a converta para Kelvin. A fórmula de conversão está apresentada abaixo: K =5/9× (F + 459, 67).
Borginhos:
Em que linguagem deve ser o programa?
Respostas
respondido por:
1
public class Conversor {
public static double converteParaKelvin(double farenheit) {
return (farenheit + 459.67) * 5/9;
}
public static void main(String[] args) {
double farenheit = 110d;
double kelvin = converteParaKelvin(farenheit);
System.out.println(kelvin + " K são " + String.format("%2f", farenheit) + " °F");
}
}
Perguntas similares
6 anos atrás
6 anos atrás
6 anos atrás
8 anos atrás
8 anos atrás
9 anos atrás