https://github.com/kkirsche/fizzbuzz
FizzBuzz
https://github.com/kkirsche/fizzbuzz
Last synced: 4 months ago
JSON representation
FizzBuzz
- Host: GitHub
- URL: https://github.com/kkirsche/fizzbuzz
- Owner: kkirsche
- Created: 2013-05-10T17:00:53.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-09-11T19:34:02.000Z (almost 9 years ago)
- Last Synced: 2025-01-17T01:12:54.760Z (6 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FizzBuzz
========Write a program that prints the numbers from 1 to 100.
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.”
Current programming languages with examples of FizzBuzz:
* Javascript
* PHP
* Python
* Ruby