Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkirsche/fizzbuzz
FizzBuzz
https://github.com/kkirsche/fizzbuzz
Last synced: about 1 month ago
JSON representation
FizzBuzz
- Host: GitHub
- URL: https://github.com/kkirsche/fizzbuzz
- Owner: kkirsche
- Created: 2013-05-10T17:00:53.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-11T19:34:02.000Z (over 8 years ago)
- Last Synced: 2023-03-15T06:15:43.001Z (almost 2 years ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- 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