1
1
Fork 0
AtomicKotlinCourse/Programming Basics/Summary 1/Exercise 8/task.md

5 lines
204 B
Markdown
Raw Normal View History

2019-10-11 14:44:13 +03:00
## Summary 1 (#8)
Implement the function `everyFifth` which should display every fifth number
in the given range. For instance, `everyFifth(11, 30)` should display the
numbers `15`, `20`, `25`, and `30`.