CJCoding With Joseph

Average of an Encapsulated List

Create a class Gradebook that stores scores in a private List<int>. AddScore(int score) records one score, and a read-only Average property returns the mean of all recorded scores as a double. Do not write a Main method.

After adding 90, 80 and 100 the program prints:
90

Expected Output:

90
Topics:
Encapsulation
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.