Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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.
image text in transcribed

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

Understanding Oracle APEX 5 Application Development

Authors: Edward Sciore

2nd Edition

1484209893, 9781484209899

More Books

Students also viewed these Databases questions