Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 429 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 429 Bytes

FizzBuzz

Using the language you are most comfortable with, you need to write an application. You will be writing an application that prints out information to a user.

Details

  • Write a program that prints the numbers from 1 to 100.
  • For multiples of three print “Fizz” instead of the number.
  • For multiples of five print “Buzz”.
  • For numbers which are multiples of both three and five print “FizzBuzz”