https://github.com/pedrovgs/fizzbuzz-kata
FizzBuzz kata implemented in java by Pedro Vicente Gómez Sánchez.
https://github.com/pedrovgs/fizzbuzz-kata
Last synced: 5 months ago
JSON representation
FizzBuzz kata implemented in java by Pedro Vicente Gómez Sánchez.
- Host: GitHub
- URL: https://github.com/pedrovgs/fizzbuzz-kata
- Owner: pedrovgs
- License: apache-2.0
- Created: 2014-03-01T10:07:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-05-12T17:51:55.000Z (over 9 years ago)
- Last Synced: 2025-04-09T07:36:37.314Z (6 months ago)
- Language: Java
- Homepage:
- Size: 22.5 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
FizzBuzz [](https://travis-ci.org/pedrovgs/FizzBuzz-Kata)
========FizzBuzz kata implemented in java:
Imagine the scene. You are eleven years old, and in the five minutes before the end of the lesson, your Maths teacher decides he should make his class more "fun" by introducing a "game". He explains that he is going to point at each pupil in turn and ask them to say the next number in sequence, starting from one. The "fun" part is that if the number is divisible by three, you instead say "Fizz" and if it is divisible by five you say "Buzz". So now your maths teacher is pointing at all of your classmates in turn, and they happily shout "one!", "two!", "Fizz!", "four!", "Buzz!"... until he very deliberately points at you, fixing you with a steely gaze... time stands still, your mouth dries up, your palms become sweatier and sweatier until you finally manage to croak "Fizz!". Doom is avoided, and the pointing finger moves on.
So of course in order to avoid embarassment infront of your whole class, you have to get the full list printed out so you know what to say. Your class has about 33 pupils and he might go round three times before the bell rings for breaktime. Next maths lesson is on Thursday. Get coding!
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz?".
Sample output:
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
16
17
Fizz
19
Buzz
... etc up to 100
Stage 2 - new requirements* A number is fizz if it is divisible by 3 or if it has a 3 in it
* A number is buzz if it is divisible by 5 or if it has a 5 in itDeveloped By
------------* Pedro Vicente Gómez Sánchez -
License
-------Copyright 2014 Pedro Vicente Gómez Sánchez
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.