No VisualG (Portugol) desenvolva um algoritmo que receba a temperatura em Fahrenheit, e em seguida retorne a temperatura transformada para Celsius, e Kelvin.
Respostas
respondido por:
1
Primeiramente precisamos saber como fazer a transformação de Farenheit para Celcius e Kelvin.
, onde Tc é a temperatura em Celcius , TF é a temperatura em Farenheit e Tk é a temperatura em Kelvin.
Indo para o código, temos algo parecido com isso :
#### Conversor de temperatura ####
tf = Input("Digite a temperatura em farenheit\n")
tc = 5*(tf-32)/9
tk = (5*(tf-32)/9)+273
print("temperatura em Farenheit : \n",tf)
print("temperatura em Celcius : \n",tc)
print("temperatura em Kelvin: \n",tk)
#### fim ####
Tamires2017:
Consegui aqui...obrigada!
Perguntas similares
5 anos atrás
5 anos atrás
5 anos atrás
7 anos atrás
7 anos atrás
7 anos atrás
8 anos atrás
8 anos atrás