Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1 . FizzBuzz Given a number n , for each integer / in the range from 7 to 7 inclusive, print one value per line

1. FizzBuzz
Given a number n, for each integer / in the range from 7 to 7 inclusive, print one value per line as follows:
15
16
17
def
18
19
20>if
*If iis 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 value 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,... n7 in ascending order, each on a separate
line.
Constraints
0 if
Inariane
Sample Output
1
2
Fizz
4
Buzz
Fizz
7
g
Fizz
Buzz
11
Explanation
The numbers 3,6,9, and 12 are multiples of 3(but not 5), so print Fizz on those lines.
The numbers 5 and 10 are multiples of 5(but not 3), so print Buzz on those lines.
The number 15 is a multiple of both 3 afid
5, so print FizzBuzz on that line.
None of the other values is a multiple of either 3 or 5, so print the value of i on those lines.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases A Beginners Guide

Authors: Andy Oppel

1st Edition

007160846X, 978-0071608466

More Books

Students also viewed these Databases questions