Assignment 9 - Vinniethatguy/UMKCCS101Labs GitHub Wiki

Weighted GradesWe’re going to work on something that is important to all students, grade weighting. Our program will allow the user to enter 2 types of grades; Tests and Programs. Each of our scores is assumed to be out of 100, so we only need the users score. The tests are 60% of a student’sgrade, while the assignments are 40%. In order to calculate the final score, we multiply the mean score of the tests by 0.6 and add it to the mean of assignments multiplied by 0.4.When we display scores we will also show them the low, high, mean, and standard deviation of their tests and assignments.

We used functions, for the menu, adding/clear assignments, basic math and import math to have everything run smoothly.