DEV Community

Discussion on: First blog... Greenhorns take on fizz buzz in c#

Collapse
 
joro550 profile image
Mark Davies

Nice solution, but remember there is nothing wrong with a good old fashioned for loop once in a while 😉.

Collapse
 
uknowaguy profile image
uknowaguy

Thanks. I'm looking back over it and realizing I could've done it with (i % 15 == 0 ) vs using &&. Always learning 😁.

I have some unneeded parentheses, as well. Might change it later or maybe I'll live it be as a reminder of growth