There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
c = float ( input ( "Informe a temperatura em C:" ) ) f = ( ( 9 * c ) / 5) + 32 print ( "A temperatura de {} C corresponde a {} F" . format ( c , f ) ) input()