-
-
Save profesor79/a58f6d58a9ed159c390dfdebc7d7348f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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