Skip to content

This program will perform the FizzBuzz test and print the result in an output text file named fizzbuzz.txt

Notifications You must be signed in to change notification settings

lee779/FizzBuzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

FizzBuzz

This program will perform the FizzBuzz test and print the result in an output text file named fizzbuzz.txt

FizzBuzz test: 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”."

Notes

User can define the range that they wish to FizzBuzz test. They are denoted as START and END User can also define the rules. They are defined as MULTIPLE_1 and MULTIPLE_2.

The program performs in O(n) with n as the size of the range.

About

This program will perform the FizzBuzz test and print the result in an output text file named fizzbuzz.txt

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages