Question: Given a number n , for each integer i in the range from 1 to n inclusive, print one value per line as follows: If
Given a number for each integer in the range from to inclusive, print one value per line as follows:
If is a multiple of both and print FizzBuzz.
If is a multiple of but not print Fizz.
If is a multiple of but not print Buzz.
If is not a multiple of or print the value of
Function Description
Complete the function fizzBuzz in the editor below.
fizzBuzz has the following parameters:
int n: upper limit of values to test inclusive
Returns: NONE
Prints:
The function must print the appropriate response for each value in the set dotsn in ascending order, each on a separate line.
Constraints
Input Format for Custom Testing
Sample Case
Sample Input
STDIN Function
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
