Open Monocucuy opened 1 year ago
Temp_min=0
Temp_max=0
Estado=0
def sistema_on () :
Temp_actual = int(input("ingrese temperatura actual: "))
if (Temp_actual<Temp_min):
print("Air and air 2 off")
elif(Temp_min<Temp_actual<Temp_max):
print("Air 1 on and air 2 off")
elif(Temp_actual>Temp_max):
print("Air 2 on and air 2 off")
menu=""" 1-Indroduccion temperatura 2-Encender sistema 3-Sistema remoto 4-Apagar sistema """ print("Que desea hacer? ") print(menu) Estado=int(input("Que opción desea elegir?:")) while(Estado!=4): if(Estado==1): Temp_min= int(input("Ingrese temperatura 1 ")) Temp_max=int(input("Ingrese temperatura 2")) elif(Estado==2): sistema_on() elif(Estado==3): print("Maquina en reposo") print("Que desea hacer? ") print(menu) Estado=int(input("Que opción desea elegir?:"))
Online Python compiler (interpreter) to run Python online.
Write Python 3 code in this online editor and run it.
COMPRESOR=False COMPRESOR_2=False TEMP_1= int(input("Cual es la temperatura minima deseada: ")) TEMP_2= int(input("Cual es la temperatura maxima deseada: ")) TEMPERATURA_CUARTO=int(input("La temperatura actual es: ")) while TEMPERATURA_CUARTO<TEMP_2: COMPRESOR=False COMPRESOR_2=False print ("Los compresores estan apagados") TEMP_CUARTO=int(input("la temperatura actual es: ")) while TEMPERATURA_CUARTO>TEMP_1 and TEMPERATURA_CUARTO<TEMP_2: COMPRESOR=True COMPRESOR_2=False print ("El COMPRESOR esta prendido mientras que el COMPRESOR_2 esta apagado") TEMPERATURA_CUARTO=int(input("la temperatura actual es: ")) while TEMPERATURA_CUARTO>TEMP_2: COMPRESOR=False COMPRESOR_2=True print ("El COMPRESOR 2 esta prendido mientras que el COMPRESOR esta apagado") TEMPERATURA_CUARTO=int(input("la temperatura actual es: "))