1. Problem 1 a. A program that can be used as a math tutor for a young student.
ID: 3659764 • 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 two new projects in VC 2010, name them FirstName_LastName_A3a and FirstName_LastName_A3b, where FirstName is your first name and LastName is your last name. Submit the zipped project folders in Eagle Online. If you use compiler other than VC 2010, then just include your source file and exe file in the zip folder. 4. Create a document to identify Input, Processing, and Output. Include pseudocode in your document.Explanation / Answer
#include #include #include #include using namespace std; int main() { char ch; srand(time(0)); const int SEED = 999; int num1, num2, num3, answer; num1 = 1 + rand() % SEED; num2 = 1 + rand() % SEED; coutRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.