Private Sub btnDisplay_Clic k(sender As Object, e As System.EventArg s) Handles btnDisplay.Clic k
' calculates average score and displays the result
Dim intScores() As Integer = {88, 72, 99, 20, 66, 95, 99, 100, 72, 88, 78, 45, 57, 89, 85, 78, 75, 88, 72, 88}
This is the beginning of the programming, but I don't know how to continue to achieve the end result. I need to find the total and display the average score of the array in a message box.
' calculates average score and displays the result
Dim intScores() As Integer = {88, 72, 99, 20, 66, 95, 99, 100, 72, 88, 78, 45, 57, 89, 85, 78, 75, 88, 72, 88}
This is the beginning of the programming, but I don't know how to continue to achieve the end result. I need to find the total and display the average score of the array in a message box.
Comment