From 8d188b907746b29390696dfef0b6022ad3ac5b31 Mon Sep 17 00:00:00 2001 From: James Lieu Date: Tue, 25 Nov 2014 15:03:49 +0000 Subject: [PATCH] Added Fizzbuzz problem --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 21fdea112..4a36a2e17 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,8 @@ Data Structures Text --------- +**Fizz Buzz** - 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”. + **Reverse a String** - Enter a string and the program will reverse it and print it out. **Pig Latin** - Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules.