LAB 7:  Due 11:59 pm, Mon Oct 30

Submit the link to your project to Moodle before the deadline. Do Not modify after the deadline.


Do the following programming exercises from Chapter 7 (pages 448-50)

Exercise 6: Let the user enter the number and program prints out the prime factors in descending order. Repeated factors must be printed. For example, if the input is 72, then the output should be 3^2*2^3

Exercise 9: Read the expressions from a file and write the results to the screen. Your input file should contain all the expressions given in the problem (as sample expressions to test on page 450) but you may add more. For simplicity, you may assume that the expressions only contain uppercase letters, white spaces, parenthesis, and the arithmetic operations +, -, * and / . (You do not have to have destructors)