Write a function playGame(maxValue) to perform the following task (its based on an old school yard game called Fuzz Buzz?):
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:
• If the value of x is divisible by 11, skip to the next value of x and display the word “skip”.
• If the value of x is divisible by 10, display the word “fuzz”
• If the value of x is divisible by 4, display the word “buzz”
• If the value of x is divisible by both 10 and 4, display the words “fuzz”
and “buzz”, unless the first rule applies.
• 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.
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.