An open API service indexing awesome lists of open source software.

https://github.com/njs-guy/fizzbuzz-in-multiple-languages

FizzBuzz is a common question in coding interviews. Essentially, you are asked to write a program that prints the numbers from 1 to 100 and for multiples of '3', print "Fizz" instead of the number and for multiples of '5' print "Buzz". For multiples of '3' AND '5', print "FizzBuzz".
https://github.com/njs-guy/fizzbuzz-in-multiple-languages

Last synced: 2 months ago
JSON representation

FizzBuzz is a common question in coding interviews. Essentially, you are asked to write a program that prints the numbers from 1 to 100 and for multiples of '3', print "Fizz" instead of the number and for multiples of '5' print "Buzz". For multiples of '3' AND '5', print "FizzBuzz".

Awesome Lists containing this project

README

        

# FizzBuzz in multiple languages

FizzBuzz is a common question in coding interviews. Essentially, you are asked to write a program that prints the numbers from 1 to 100 and for multiples of '3', print "Fizz" instead of the number and for multiples of '5' print "Buzz". For multiples of '3' AND '5', print "FizzBuzz".

Output should look something like this:
```
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzBuzz
```
And so on.

It would be much better to come up with your own implementation before looking at mine. Interviewers ask questions like these to make sure that you actually know how to code, so if you just copy and paste everything, you might not get far.