Algorithms/Find maximum/visual basic method 1
< Algorithms < Find maximumFunction FindMax(ByVal x() As Integer) As Integer
If x.Length = 0 Then
Return 0
ElseIf x.Length = 1 Then
Return x(0)
Else
Dim temp As Integer = x(0)
For i As Integer = 0 To x.Length - 1
If x(i) > temp Then
temp = x(i)
End If
Next
Return temp
End If
End Function
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.