Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. Problem 1 a. A program that can be used as a math tutor for a young student.

ID: 3639337 • Letter: 1

Question

1. Problem 1
a. A program that can be used as a math tutor for a young student. The program should display two random numbers between 1 and 9 that are to be added such as: 3 + 2=
b. Then the program should wait for the student to enter the answer. If the answer is correct, a message of congratulation should be printed. If the answer is incorrect, a message should be printed showing correct answer.
2. Problem 2
a. Create a text file with the following data
* + - / @ ! ~ =
b. Write a C++ program that reads each character from the file you created in step 1, and determine which character has the largest ASCII value?

Explanation / Answer

Here ya go. Just ran and tested it for ya. ********** PRObLEM 1 ****************** #include #include using namespace std; int main() { int num1, num2, answer; srand(time(NULL)); num1 = 1 + rand() % 9; num2 = 1 + rand() % 9; cout