Skip to content

Instantly share code, notes, and snippets.

@profesor79
Created March 22, 2023 15:56
Show Gist options
  • Save profesor79/a58f6d58a9ed159c390dfdebc7d7348f to your computer and use it in GitHub Desktop.
Save profesor79/a58f6d58a9ed159c390dfdebc7d7348f to your computer and use it in GitHub Desktop.
string[] s = new string[6]{"Fizz", "Buzz", "", "", "", ""};
for (int i = 1; i <= 100; i++)
{
string output = s[(i%3)*2] + s[(i%5)+1];
Console.WriteLine(string.IsNullOrEmpty(output)? "" + i : output);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment