Skip to content

Commit

Permalink
Reto #0 python
Browse files Browse the repository at this point in the history
  • Loading branch information
savp03 committed Dec 26, 2022
1 parent 4fdb32d commit 7b78f97
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Retos/Reto #0 - EL FAMOSO FIZZ BUZZ [Fácil]/python/savp03.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# * Escribe un programa que muestre por consola (con un print) los
# * números de 1 a 100 (ambos incluidos y con un salto de línea entre
# * cada impresión), sustituyendo los siguientes:
# * - Múltiplos de 3 por la palabra "fizz".
# * - Múltiplos de 5 por la palabra "buzz".
# * - Múltiplos de 3 y de 5 a la vez por la palabra "fizzbuzz".

i = 0

while i < 100:
i+=1
if i % 3 == 0 and i % 5 == 0:
print("fizzbuzz")
elif i % 3 == 0:
print("fizz")
continue
elif i % 5 == 0:
print("buzz")
continue
print(i)

0 comments on commit 7b78f97

Please sign in to comment.