ismail2ov / fizz-buzz-kata

Fizz Buzz Kata

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fizz Buzz Kata

Task

  • Write a program that prints one line for each number from 1 to 100
  • For multiples of three print Fizz instead of the number
  • For the multiples of five print Buzz instead of the number
  • For numbers which are multiples of both three and five print FizzBuzz instead of the number

How to do it?

Use Baby Steps to develop the task.

About

Fizz Buzz Kata