Question: C PROGRAMMING Write a program that randomly draws multiplication problems (in chapters 1-9) or division tasks for elementary students. The division problems must be such
C PROGRAMMING
Write a program that randomly draws multiplication problems (in chapters 1-9) or division tasks for elementary students. The division problems must be such that the result is an integer (use the multiplication algorithm from the previous section). The program asks a question to which the user answers. The questions are in the form: Enter -1 to end How much is 5 times 3? 15 Correct! Enter -1 to end How much is 9 times 7? 62 Incorrect, please try again> 63 Correct! The program examines whether the answer is correct or incorrect and provides feedback. If the answer is incorrect, the program will ask the same question again until the answer is correct. Use random numbers to generate tasks. The program keeps track of the number of correct and incorrect answers and tells you whether the test result is passed (= at least as many or more correct answers than the wrong ones) or rejected (= incorrect answers more than correct). Finally, print the correct and incorrect answers and the test result in the following format: You got 2 answers right, and 1 went wrong Your rating is: "Approved" Execution of the program ends when the user enters the number -1.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
