Question: please write in C++ Write a C program to solve the FizzBuzz problem - read the statement carefully: FizzBuzz Questions named after a game children

please write in C++
Write a C program to solve the "FizzBuzz" problem - read the statement carefully: FizzBuzz Questions" named after a game children often play (or are made to play) in schools in the UK. An example of a Fizz-Buzz question is the following: 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". Most good programmers should be able to write out on paper a program which does this in a under a couple of minutes. Want to know something scary? The majority of comp sci graduates can't. .Hint: start the decision process with the case when the number is both multiple of 3 and 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
