Starting from:

$25

C Program using functions? Assignment 6

Objective
To give students practice in using functions
Problem: Educational SoftwareYour little brother is having trouble with arithmetic. Your parents realize that after taking a few weeks of your C programming course, that you could potentially write a computer program that will allow him to practice his arithmetic skills. In particular, your program will allow your brother to play two separate games: 1) A game where he has to complete several additions or multiplications. 2) A game where he has to determine a secret number after being told if his guesses are too high or too low. Your program should prompt your brother with the following menu: 1) Play Arithmetic Game2) Play Guessing Game3) Print Score4) Quit If he chooses option 1, then you should prompt him with the following menu choices: 1) Addition2) Multiplication Your program should then prompt him for the maximum value of the numbers to be used in the problems and the total number of questions. Then it should play the game by prompting him with the desired number of additions/multiplications. Your program should keep track of how much time he takes for these problems. In addition, 5 penalty seconds should be added for each incorrect response. The total time he takes (taking into account the penalty seconds) will be used to determine his score for the round. If he chooses option 2, then you should prompt him for the maximum integer, n, for the guessing game. Then your program should generate a random integer in between 1 and n, inclusive. After that, it should prompt your brother for his first guess. After each guess, your program should tell him whether to guess higher or lower. This continues until he gets the number exactly. Your program should also keep track of how much time the game takes to play. This value will be used to determine his score for the round. For option 3, simply report your brother's total score, which is the sum of his scores from each round he plays. Scoring DetailsFor the arithmetic game, the score your brother earns is equal to the total amount of time (in seconds) it took him to finish the problems (including penalty seconds) divided by the number of problems he solved. For the guessing game, the score your brother earns is equal to the total amount of time (in seconds) it took him to guess the secret number divided by two times the number of digits in the maximum number allowed in the game. (For example if the maximum number was 1000, and he took 15 seconds to guess the correct number, then his score would be 15/(2*4) = 1.875.) The score in seconds then must be converted to an integer number of points in between 0 and 10. In particular, the conversion works as shown in the chart below: Time, t, (in seconds)Corresponding Scoret < 1101 ≤ t < 292 ≤ t < 383 ≤ t < 474 ≤ t < 565 ≤ t < 656 ≤ t < 747 ≤ t < 838 ≤ t < 929 ≤ t < 101t ≥ 100 Implementation DetailsYou will be required to write four functions with the prototypes given below. (Note: you may write other functions as well, but these three are required.) Your functions should do what the comments for them below specify: // This function gives the user quantity arithmetic// questions, where each operand ranges from 1 to max,// inclusive. The value of operator dictates whether// the problems are addition or multiplication problems.// Namely, if op is 1, they are addition problems,// otherwise, they are multiplication problems.// The function returns the number of seconds the user took// to play the entire game, divided by the number of// problems they solved.double arithGame(int max, int quantity, int op); // This function allows the user to play the guessing game// where the randomly generated number lies in between 1// and max, inclusive. The value returned is the number of// seconds the user took to finish the game divided by the// 2 times the number of digits in the number max.double guessGame(int max); // Returns the number of digits in number.int numDigits(int number); // Returns the number of points the user has earned based// on time. In particular, if time is less than 1, 10 is// returned. Otherwise, if it is less than 2, 9 is// returned, etc. If time is greater than or equal to 10,// then 0 is returned.int numPoints(double timesec); Other Useful InformationSeed the random number generator at the beginning of your program. Do this exactly once. Here is the line of code: srand(time(0)); In order to use this you need to include stdlib.h and time.h at the top of the program. Please use the following constants for ADD and MULT #define ADD 1#define MULT 2 In order to calculate how much time something takes, you can use the time function. In particular, the function call time(0) returns a double that represents the number of seconds after some time. In order to effectively use this, you must call the function twice: once right before you start what you want to time, and once right afterwards. Subtract these two values to obtain the amount of time a segment of code took. Here is a short example: int start = time(0);// Insert code you want to time here.int end = time(0);int timespent = end - start;printf("Your code took %d seconds.\n", timespent); In order to carry out the scoring function, it may be helpful to look at the following functions in the math library: double ceil(double x);double floor(double x); Remember, if you want to convert a double to a corresponding integer, you can use a cast as in the example below, where we assume that value is an integer and seconds is a double: value = (int)seconds; ReferencesTextbook: Chapters 3 and 4 Notes: Lectures on loops, functions, random number generator functions RestrictionsName the file you create and turn in game.c. Although you may use other compilers, your program must compile and run using Dev C++ or gcc. If you use your olympus account to work on this assignment, please follow the steps shown in class to create, compile, and test your program. Your program should include a header comment with the following information: your name, course number, section number, assignment title, and date. You should also include comments throughout your code, when appropriate. If you have any questions about this, please see a TA. DeliverablesA single source file named game.c turned in through WebCT. Sample OutputPlease make a selection from the following:
Play Arithmetic Game.
Play Guessing Game.
Print Score.
Quit.
1Would you like, 1)Addition or 2)Multiplication?1What is the maximum number you would like?100How many problems do you want?4What is 21+86?107Correct, great job!What is 87+96?173Sorry, that's incorrect, the answer is 183.What is 86+70?156Correct, great job!What is 55+4?59Correct, great job!You took an average of 6.000000 seconds per question.Your score for the round is 4.Please make a selection from the following:
Play Arithmetic Game.
Play Guessing Game.
Print Score.
Quit.
2Enter the maximum number for the game.100Enter the guess!50Your guess is too high, try again.Enter your guess!30Your guess is too high, try again.Enter your guess!10Your guess is too high, try again.Enter your guess!5Your guess is too low, try again.Enter your guess!7Your guess is too high, try again.Enter your guess!6Great, you guessed the correct number 6 in 6 guesses in 10 seconds.Your score for the round is 9.Please make a selection from the following:
Play Arithmetic Game.
Play Guessing Game.
Print Score.
Quit.
3Your score is 13.Please make a selection from the following:
Play Arithmetic Game.
Play Guessing Game.
Print Score.
Quit.
4Thank you for playing!

More products