Ejercicio
Cálculos Múltiples
Objectivo
Desarrolla un programa Python que solicite al usuario que ingrese dos números y luego muestre los resultados de la suma, resta, multiplicación, división y resto.
Podría verse así:
Ingresa un número: 12
Ingresa otro número: 3
12 + 3 = 15
12 - 3 = 9
12 * 3 = 36
12 / 3 = 4
12 % 3 = 0
Ejemplo de ejercicio de Python
Mostrar código Python
# Prompt the user to enter the first number
num1 = float(input("Enter a number: "))
# Prompt the user to enter the second number
num2 = float(input("Enter another number: "))
# Calculate and display the results of addition, subtraction, multiplication, division, and remainder
print(f"{num1} + {num2} = {num1 + num2}")
print(f"{num1} - {num2} = {num1 - num2}")
print(f"{num1} * {num2} = {num1 * num2}")
print(f"{num1} / {num2} = {num1 / num2}")
print(f"{num1} % {num2} = {num1 % num2}")
Output
Enter a number: 12
Enter another number: 3
12.0 + 3.0 = 15.0
12.0 - 3.0 = 9.0
12.0 * 3.0 = 36.0
12.0 / 3.0 = 4.0
12.0 % 3.0 = 0.0
Código de ejemplo copiado
Comparte este ejercicio de Python