using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
/*
Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three it should output “Fizz”
instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.
Output the results of the FizzBuzz function to the console window below.
*/
public static void Main()
}
private static List<string> FizzBuzz(int n)
throw new NotImplementedException();
SAMPLE OUTPUT (n = 15):
"1",
"2",
"Fizz",
"4",
"Buzz",
"7",
"8",
"11",
"13",
"14",
"FizzBuzz"