โ Back to Encapsulation
Question 473
Average of an Encapsulated List
Average of an Encapsulated List
Create a classGradebookthat stores scores in aprivate List<int>.AddScore(int score)records one score, and a read-onlyAverageproperty returns the mean of all recorded scores as adouble. Do not write aMainmethod. 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.