Write a program that asks the user to enter a student’s grades on four exams. The program should display the four grades and the average of the four grades, rounded to the nearest tenth. To add the grades, use a variable called total_ grade, which you should initialize to zero. As the program prompts for and obtains each grade, add the grade to total_ grade using the += operator.