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: 3640841 • 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?

3. Create a document to identify Input, Processing, and Output.

Explanation / Answer

heres your first one ill do the second one if you post it in another thread. you cant have more than one question. #include #include #include using namespace std; int main() { unsigned seed= time (0); srand(seed); float y,x,answer, inAnswer; y=1+rand() %9; x=1+rand() %9; answer=x+y; cout