Skip to content

enagaraj89/BestBuy_FizzBuzz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

BestBuy_FizzBuzz

This is a web application developed in ASP.Net Core MVC and C# that takes in a collection of values. The application will do the following for each value in the collection:

  1. If the value is a multiple of 3 then output the word “Fizz”
  2. If the value is a multiple of 5 then output the word “Buzz”
  3. If the value is divisible by both 3 and 5 then output the word “FizzBuzz”
  4. At the end of the run the program should display each division that was performed. See Sample Output below.

Sample input: [1, 3, 5 , , 15, A, 23]

Sample Output: Divided 1 by 3 Divided 1 by 5 Fizz Buzz Invalid Item FizzBuzz Invalid Item Divided 23 by 3 Divided 23 by 5

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published