Create a loop that depends on a variable x starting


Problem

Write a function playGame(maxValue) to perform the following task (it's based on an old school yard game called "Fuzz Buzz"):

Create a loop that depends on a variable x starting with the value 1 and increasing in value by 1 for each iteration of the loop, until x reaches a maximum value specified by the formal parameter maxVal. At each iteration of the loop the value of x should be displayed, unless one of the conditions shown below is true, when the message specified below should be displayed instead:

1) If the value of x is divisible by 11, skip to the next value of x and display the word "skip".

2) If the value of x is divisible by 10, display the word "fuzz"

3) If the value of x is divisible by 4, display the word "buzz"

4) If the value of x is divisible by both 10 and 4, display the words "fuzz"

5) and "buzz", unless the first rule applies.

6) Otherwise just display the value of x.

You can find out if a number is ***** by another using the modulo operator %. This tells you the remainder after integer division. For example:

• 8 % 2 equals 0 as 2 goes into 8 four times leaving no remainder.
• 8 % 3 equals 2 as 3 goes into 8 two times leaving a remainder of 2.

You should then create a function runGame() that invites the user to enter an appropriate value for maxValue, and then calls the playGame() function accordingly.

The response should include a reference list. Double-space, using Times New Roman 12 pnt font, one-inch margins, and APA style of writing and citations.

Solution Preview :

Prepared by a verified Expert
Accounting Basics: Create a loop that depends on a variable x starting
Reference No:- TGS03163261

Now Priced at $25 (50% Discount)

Recommended (99%)

Rated (4.3/5)