Assignment objectives:
Description
Write a program that asks the user for 4 names and 4 score for test (0 to 100), write the names with corresponding score to a file. Read the file and find the average, the lowest and the highest score and display them. If the name that the user enters is "Vader" then assign a score of 100 regardless of what the user enters for Vader's score.
User input:
4 names and 4 test scores:
Example:
John 78
Mary 99
Sam 86
Judy 70
Output:
Test average is: 83.2
Mary has the highest score: 99
Judy has the lowest score: 78