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:
- If the value is a multiple of 3 then output the word “Fizz”
- If the value is a multiple of 5 then output the word “Buzz”
- If the value is divisible by both 3 and 5 then output the word “FizzBuzz”
- 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