Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 10 - Faça um Programa que peça a temperatura em graus Celsius, transforme e mostre em graus Fahrenheit.
- cel = float(input("Digite o valor da temperatura em Celsius: "))
- vt = cel * 1.8
- fah = vt + 32
- print('A temperatura Celsius convertida em graus Fahrenheit é de: ',fah)
RAW Paste Data