Question: Write a program ( USING C NOT C + + ) that will help an elementary school student learn multiplication. Use the rand ( )

Write a program (USING C NOT C++) that will help an elementary school student learn multiplication. Use the
rand() function to produce two positive integers between 1 and 10. The program should then
prompt the user with a question, such as
How much is 6 times 7?
The student then inputs the answer. Next, the program checks the students answer. If its correct,
display the message "Very good!" and ask another multiplication question. If the answer is wrong,
display the message "No. Please try again." and let the student try the same question repeatedly
until the student finally gets it right. A function should be used to generate each new question. This
function should be called once when the application begins execution and each time the user
answers the question correctly.
The function generates the two random values, asks the user the question, and returns the correct
solution to main(). In main() you will prompt the user for their response. Use the response and the
correct solution that was passed back to determine if to display "Very good!" and ask another
multiplication question, or if to display "No. Please try again." and let the student try the same
question repeatedly, as described above. Modify your program in Part 4 to vary the responses for a correct and incorrect response. If
the student answers the question correctly, call a function called correctResponse() that displays
one of the following messages:
Very good!
Excellent!
Nice work!
Keep up the good work!
and then ask them a new question.
If the student answers the question the question incorrectly, call a function called
incorrectResponse() that displays one of the following messages:
No. Please try again.
Wrong. Try once more.
Don't give up!
No. Keep trying.
and then ask them the question again.
For each of the functions, use random-number generation to choose a number from 1 to 4 that will
be used to select one of the four appropriate responses to each correct or incorrect answer. Use a
switch statement to issue the responses.
 Write a program (USING C NOT C++) that will help an

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!