Generation

typingsTue, 04 Jul 2023

Algoritmo Ejercicio6 Definir f,gradoCelsius Como real; Escribir"ingrese la temperatura en ° Celsius "; Leer grado Celsius ; f=((9/5)*gradoCelsius+32); Escribir "temperatura equivalente Fahrenheit es " f " ° F "; FinAlgoritmo

def Celsius (gradoCelsius): f=((9/5)*gradoCelsius+32) print("temperatura equivalente Fahrenheit es:",f) print(" ° F ") return f

Want to kickstart your project?Use the new AI Studio to create your code