Created
February 20, 2021 23:52
-
-
Save chinnonsantos/5fc8cfe309ad376235b58e14a04f045d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun fizzbuzz(start: Int, end: Int) { | |
for (k in start..end) { | |
fun isFizz() = k % 3 == 0 | |
fun isBuzz() = k % 5 == 0 | |
if (isFizz() && isBuzz()) | |
println("Fizz Buzz") | |
else if (isFizz()) | |
println("Fizz") | |
else if (isBuzz()) | |
println("Buzz") | |
else | |
println(k) | |
} | |
} | |
fun main() { | |
fizzbuzz(start = 1, end = 15) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment