This is a simple program that prints numbers from 1 to 100. However, for multiples of three, it prints "Fizz" instead of the number, and for the multiples of five, it prints "Buzz". For numbers which are multiples of both three and five, it prints "FizzBuzz".
- Make sure you have the correct programm languege installed on your system.
- Clone this repository to your local machine using
git clone https://github.com/MitjaCH/FizzBuzz.git
or download the ZIP file and extract it.
- Navigate to the directory where you cloned or extracted the repository.
- Open a terminal or command prompt in that directory.
- Run the program
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
16
...
Feel free to modify the program or its parameters to suit your needs.
Contributions are welcome! If you have any suggestions, improvements, or bug fixes, please feel free to open an issue or create a pull request.