本文介绍了如何平均数组中的数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Private Sub btnDisplay_Click(sender As Object,e As System.EventArgs)处理btnDisplay.Click

''计算平均得分并显示结果


Dim intScores()As Integer = {88,72,99,20,66,95,99,100,72,88,78,45,57,89,85,78,75,88,72,88}


这是编程的开始,但我不知道如何继续实现最终结果。我需要找到总数并在消息框中显示数组的平均分数。

Private Sub btnDisplay_Click(sender As Object, e As System.EventArgs) Handles btnDisplay.Click
'' 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.

推荐答案



展开 | 选择 | 换行 | 行号


这篇关于如何平均数组中的数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 06:19