BigStupidBeast / fizz-buzz

perfect fizz buzz program
0 stars 0 forks source link

OR / AND print #1

Closed BigStupidBeast closed 1 year ago

BigStupidBeast commented 1 year ago

Hello! Technically, the expected behavior is not clear from description. A) should the program print word instead the number or B) should the program print both a number and a word

the original game describes complete replacement https://en.wikipedia.org/wiki/Fizz_buzz

Task from business: Write a program that prints the numbers from 1 to 100 and for multiples of ‘3’ print “Fizz” instead of the number and for the multiples of ‘5’ print “Buzz”.

BigStupidBeast commented 1 year ago

Hi. We will use rule from original game.

A) should the program print word instead the number