Question: this is the programming assignment that I need help with that is due tomorrow. this is the programming 4 assignment that I did before this


this is the programming assignment that I need help with that is due tomorrow.
this is the programming 4 assignment that I did before this one that is due tomorrow this will help you answer program 5.

Please do let me know if you are not able to see the picture clearly.
Follow instructions to create a visual C++ project, add the C++ code, compile, run and fix errors. Save it to your Lab Assignment Folder in your Z drive or to your laptop. Write your Name, course, and date as comments on first line. // First and last name CSDP 221 Program 05 03/2/21 Explain what the program is to do along with any directions or instructions needed for program users Multiplication Exercise for young Students Modify program 04 such that it should display two random numbers to be multiplied, pause while the student works on the problem. When the student is ready to check the answer, he or she can enter the answer and press the enter key and the program will display the correct solution. A message need to be displayed to let them know if that answer is correct or not. Note: In order to get the two random numbers multiplied between 1 and 12 you can use MIN number as 1 and MAX as 12 (declare both as constants). Then generate the two random numbers to be multiplied using MIN and MAX as follows: ranNum = (rand() % (MAX_VAL - MIN_VAL + 1)) + MIN_VAL In order to get the two random numbers multiplied between 1 and 12 you can use MIN number as 1 and MAX as 12 (declare both as constants). Then generate the two random numbers to be multiplied using MIN and MAX as follows: ranNum =(rand() % (MAX_VAL - MIN_VAL + 1)) + MIN_VAL Expected outputs: A Microsoft Visual Studio Debug Console ****Check your multiplication Facts**** 12 x 12 = Please enter your answer for 112 x 12 = 142 Press enter to check your answer 12 x 12 = 144 Sorry, that is incorrect. Microsoft Visual Studio Debug Console ****Check your multiplication Facts**** 6 x 5 = Please enter your answer for 6 x 5 = 30 Press enter to check your answer 6 x 5 = 30 Great job! Correct answer. // Odochi Nwokochah CSDP 221 Program 04 2/22/21 #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
