Skip to content

Commit

Permalink
Merge pull request #6654 from astrosinfinitos/main
Browse files Browse the repository at this point in the history
He realizado el reto 40, el de las tablas de multiplicar
  • Loading branch information
kontroldev authored Aug 20, 2024
2 parents 1b1fcc1 + 5f35c8b commit 8e3fd50
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# Crea un programa que sea capaz de solicitarte un número y se
# - Debe visualizarse qué operación se realiza y su resultado.
# Ej: 1 x 1 = 1
# 1 x 2 = 2
# 1 x 3 = 3
# ...
#


entrada_validada = False
numero_para_multiplicar = int(input("Introduce un número: "))

while (
not entrada_validada
): # Compruebo con el try except que efectivamente hemos introducido un número
try:
for i in range(1, 11):
print(f"{numero_para_multiplicar} x {i} = {numero_para_multiplicar * i}")
entrada_validada = True
except ValueError:
print("Por favor, introduce un número válido.")

0 comments on commit 8e3fd50

Please sign in to comment.