vote up 0 vote down star

Does anyone know how to write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz"? Thanks, I am stuck. Any language will do.

Duplicate of what-is-your-solution-to-the-fizzbuzz-problem

flag

60% accept rate
Read: codinghorror.com/blog/archives/… – Gumbo Mar 18 at 20:36
1  
This seems like either a joke, or homework. – Tom Ritter Mar 18 at 20:37
You're welcome to post homework questions here, but you need to post what you've tried so far and where you're stuck. No one is going to outright do the assignment for you. – Jon B Mar 18 at 20:37
You didn't mention your language, and this is the kind of you thing you should attempt yourself first. I can point you in the right direction though. Look into your platform's modulus operator. Depending on your platform it could be %, mod, or something else. – Joel Coehoorn Mar 18 at 20:39
1  
If I do your homework can I have your diploma...? – Jimmy J Mar 18 at 20:43
show 3 more comments

closed as exact duplicate by Mark Biek, Gumbo, Rex M, LFSR Consulting, Adam Davis Mar 18 at 20:38

1 Answer

vote up 32 vote down check

Any language?

>++++++++++[<++++++++++>-]>>>+++>+++++>+<<<<<<
[
 >>>+
 >- [<<+>>-]<<<+>[<[-]>>>+<<-]<[>>>+++>>[-]<<<<<- +++++++[>++++++++++<-]>.<+++++++[>+++++<-]>.<++++[>++++<-]>+..[-]<]>>
 >>- [<<<+>>>-]<<<<+>[<[-]>>>>+<<<-]<[>>>>+++++>[-]<<<<<- +++++++++++[>++++++<-]>.<+++++++[>+++++++<-]>++.+++++..[-]<]>>
 >>>
 [-
  <<<[<+>>>>+<<<-]<[>+<-]>>>>
  [
   >++++++++++<
   [>-[>+>+<<-]>[<+>-] +>[<[-]>-]< [>>+<<<++++++++++>-]<<-]
   >---------- >>>[<<<<+>>>>-] <<<<
   >>>>>+> >>[-] <[>+<-] <[>+<-] <<<<< [>>>>>+<<<<<+] <
  ]
  >>>>>
  [ <++++++[>>++++++++<<-]>> . [-] >[<+>-] >[<+>-] <<<-]
  <<<<<
 ]+
 <<<<<
 +++++++++++++.---.[-]
<-]
link|flag
Ah, the ever comprehensible brainfuck :-) – Greg Beech Mar 18 at 20:41
1  
You made my day. I wanted to encourage answers like this, but I'm too kind. – gbarry Mar 18 at 20:41
Which language is this? – Peter J Mar 18 at 20:42
@Iconic: en.wikipedia.org/wiki/BrainFuck – grieve Mar 18 at 20:43
Awesome. I was actually contemplating this the other day. You get a cookie. – Jotham Mar 18 at 20:46
show 6 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.