What is fuzz buzz ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is fuzz buzz ?

Python 3

22nd Jan 2021, 4:11 PM
Muhammad Abdulmalik
Muhammad Abdulmalik - avatar
2 Answers
24th Jan 2021, 11:26 AM
Hrutik Bhalerao
Hrutik Bhalerao - avatar
+ 1
Fizz buzz is a test of programming . The concept is: if a number is a multiple of 3 you print Fizz, if it's a multiple of 5 you print Buzz, if it's a multiple of both(3 and 5) you print Fizz-Buzz else you print the number. Example: 1 2 Fizz 4 Buzz FIZZ 8 FIZZ Buzz 11 FIZZ 13 14 Fizz-Buzz .. ..
22nd Jan 2021, 6:48 PM
Hisham YUM 🇲🇦
Hisham YUM 🇲🇦 - avatar