4 Comments

num1 = 12

num2 = 45

num3 = 32

if num2 > num1 and num2 > num3:

max_number = num2

elif num2 < num3 and num1 < num3:

max_number = num3

else:

max_number = num1

print(f"The largest number is {max_number}")

Expand full comment

num1=float(input("Ingrese el primer numero: "))

num2=float(input("Ingrese el segundo numero: "))

num3=float(input("Ingrese el tercer numero: "))

if num1>num2 and num1>num3:

print(f'El numero mayor es: {num1}')

elif num2>num1 and num2>num3:

print(f'El numero mayor es: {num2}')

else:

print(f'El numero mayor es: {num3}')

Expand full comment

otra forma seria:

print("Algoritmo para encontrar el maximo de tres numeros")

print()

num1 = 12

num2 = 45

num3 = 32

lista=[]

lista.append(num1)

lista.append(num2)

lista.append(num3)

numero= max(lista)

print(f'el numero:{numero}, es el mayor de los 3.')

Expand full comment

print("Algoritmo para encontrar el maximo de tres numeros")

print()

num1 = 12

num2 = 45

num3 = 32

if num1 > num2 and num1 > num3:

print(f"el numero: {num1}, es el mayor de los 3.")

elif num2 > num1 and num2 > num3:

print(f"el numero: {num2}, es el mayor de los 3.")

else:

print(f"el numero: {num3}, es el mayor de los 3.")

Expand full comment