Write a C++ program that prompts the user for the following student's grades in a course - from 0 to 100:
Assignments
Project
Midterm Exam
Final Exam
Calculate the Final Grade by averaging the four score values, and display a message indicating whether the student has passed the class.
Notes: A student has passed when Final Grade is greater than or equal to 60.
To calculate the average, add the four score values and divide by 4.