Informática, perguntado por Laianearmy, 9 meses atrás

Escreva uma algoritmo em Python, capaz de converte 26º C em Fahrenheit (ºF). Formula: Fahrenheit = Celsius * 1,8 + 32 *

Soluções para a tarefa

Respondido por LonelySoul
0

Resposta:

tempCelsius = int(26)

tempFahrenheit = ((tempCelsius *1.8) + 32)

print (tempFahrenheit)

Respondido por DartLey
0

Olá, resolução:

Celsius = float(input('Informe a temperatura em ºC: '))

Fahrenheits = Celsius * 9 / 5 + 32

print(f'A temperatura de {Celsius}ºC corresponde a {Fahrenheits}ºF!')

Perguntas interessantes