Objectivo
Desarrolla un programa Python que solicite al usuario dos números y muestre su división y resto. Si se ingresa 0 como segundo número, advertirá al usuario y finalizará el programa si se ingresa 0 como primer número. Ejemplos:
¿Primer número? 10
¿Segundo número? 2
La división es 5
El resto es 0
¿Primer número? 10
¿Segundo número? 0
No se puede dividir por 0
¿Primer número? 10
¿Segundo número? 3
La división es 3
El resto es 1
¿Primer número? 0
¡Adiós!
Ejemplo Ejercicio Python
Mostrar Código Python
while True:
# Prompt the user to enter the first number
num1 = int(input("First number? "))
# Check if the first number is zero
if num1 == 0:
print("Bye!")
break
# Prompt the user to enter the second number
num2 = int(input("Second number? "))
# Check if the second number is zero
if num2 == 0:
print("Cannot divide by 0")
else:
# Calculate and display the division and remainder
division = num1 // num2
remainder = num1 % num2
print(f"Division is {division}")
print(f"Remainder is {remainder}")
Output
First number? 10
Second number? 2
Division is 5
Remainder is 0
First number? 10
Second number? 0
Cannot divide by 0
First number? 10
Second number? 3
Division is 3
Remainder is 1
First number? 0
Bye!
Código de Ejemplo copiado
Comparte este ejercicios Python