Location: near Govt College of Science Multan Pakistan
Posts: 9,683
Thanks: 2,337
Thanked 2,223 Times in 1,816 Posts
Contact Number: Removed
Program / Discipline: BSIT
Class Roll Number: 07-15
Time Spent Online: 3 Months 3 Weeks 5 Days 3 Hours 44 Minutes 43 Seconds
Find the Average of all elements in an Array VB Code (By Sheraz)
Module Module1 Sub Main() Dim ar As Integer() Dim sum As Integer = 0 Dim div As Integer Dim avg As Integer ar = New Integer() {15, 8, 1, 6, 34, 7, 5, 342, 4, 7} div = ar.Length 'Length property tells total # of elements in an array For i = 0 To ar.GetUpperBound(0) sum = sum + ar(i) ' or sum += ar(i) Next avg = sum / div Console.Write("The Average of the elements of array is: {0}", avg) Console.ReadLine() End Sub End Module
__________________
(¯`v´¯) `*.¸.*` ¸.*´¸.*´¨) ¸.*´¨) (¸.*´ (¸.Bzu Forum
Don't cry because it's over, smile because it happened