We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
FizzBuzz
Given a number n, for each integer / in the range from 1 to n inclusive, print one value per line as follows:
• If/is a multiple of both 3 and 5, print FizzBuzz.
• If/is a multiple of 3 (but not 5), print Fizz.
If / is a multiple of 5 (but not 3), print Buzz.
• If/is not a multiple of 3 or 5, print the valu of i
Function Description Complete the function fizzBuzz in the editor below.
fizzBuzz has the following parameter(s): 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 {1, 2, ... n} in ascending order, each on a separate line.
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
FizzBuzz
You are viewing a single comment's thread. Return to all comments →