Search Results

4
votes

What is your solution to the FizzBuzz problem?

A short solution, in C: main(i) { for(; i < 101; puts(i++ % 5 ? "" : "Buzz")) printf(i % 3 ? i % 5 ? "%d" : "" : "Fizz", i); } …