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".
- Host: GitHub
- URL: https://github.com/njs-guy/fizzbuzz-in-multiple-languages
- Owner: njs-guy
- License: mit
- Created: 2021-08-26T15:13:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-11T02:00:17.000Z (almost 3 years ago)
- Last Synced: 2024-12-30T22:29:42.768Z (4 months ago)
- Language: C#
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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.