Skip to content

Commit

Permalink
Merge pull request #200 from hgarciaalberto/reto0
Browse files Browse the repository at this point in the history
Reto #0 - Kotlin
  • Loading branch information
mouredev authored Jan 2, 2023
2 parents 499257e + 639a061 commit 2b62876
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
"""
RETO #0
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".
*/

(1..100).forEach {
when {
(it % 3) == 0 && (it % 5) == 0 -> "fizzbuzz"
(it % 5) == 0 -> "buzz"
(it % 3) == 0 -> "fizz"
else -> it
}.let {
println(it)
}
}

0 comments on commit 2b62876

Please sign in to comment.