Okay this week's homework assignment is as follows. I will be working on it and dumping code in here all morning so you guys can see my weak mind fail over and over again at what you guys feel are the most basic of concepts.
Write a program that would allow a user to enter student names and Final grades (e.g. A,B,C,D,F) from their courses. You do not know how many students need to be entered. You also do not know how many courses each of the students completed. Design your program to calculate the Grade Point Average (GPA) for each student based on each of their final grades. The program should output the Student name along with the GPA.
At initial glance I should do the following:
1.) Define the weight for each letter grade.
2.) Ask how many students right at the beginning.
3.) Ask for names and store that, I wonder if I can do a list to a variable.
4.) Ask for letter grades and count how many classes they input and store that.
5.) Ask if that is all the grades.
6.) Ask if that is all the names.
7.) End program.