a game, algorithm and a common programming task of replacing any number divisible by three with the word "fizz", and any number divisible by five with the word "buzz"
Reading the coding horror, I just came across the FizzBuzz another time. The original post is here: Coding Horror: Why …
c# optimization fizzbuzzI just came home from a job interview, and the interviewer asked me to write a program: It should, count …
javascript fizzbuzzI had a quiz and I wrote this code: Print Fizz if it is divisible by 3 and it prints Buzz …
c fizzbuzzAnybody have any good FizzBuzz type questions that are not the FizzBuzz problem? I am interviewing someone and FB is …
fizzbuzzCan someone please correct this code of mine for FizzBuzz? There seems to be a small mistake. This code below …
javascript fizzbuzzThe program below functions as necessary but how do I reduce the amount of if statements. I have been told …
java if-statement switch-statement fizzbuzzHad my midterm in "programming with C" last week, the final question was write a program to print a list …
c fizzbuzzI'm getting stucked with the following error: ./main.go:76: invalid indirect of Fizzbuzz (type func(int) string) I understand that …
go fizzbuzzHow do I change the output depending on whether or not it is divisible by 3 or 5? If it is divisible …
javascript fizzbuzzI have only just started to learn python as my first language and whilst i worked out the code for …
python python-3.x fizzbuzz