Skip to content

Instantly share code, notes, and snippets.

// 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".
for (var i = 1; i <= 100; i++) {
var output = "";
if (i % 3 == 0) {
output += "Fizz";
}
if (i % 5 == 0) {
output += "Buzz";
var threes = new List<Three>
{
new Three(ThreeType.Ferocity)
{
ThreeRows = new List<ThreeRow>()
{
new ThreeRow()
{
Priority = 0,