在VB中,可以使用以下方法來取最大值:
Dim max As Integer = Math.Max(10, 20)
上述代碼中,max的值將為20,因為20是傳遞給Math.Max方法的兩個參數中較大的值。
Dim num1 As Integer = 10
Dim num2 As Integer = 20
Dim max As Integer
If num1 > num2 Then
max = num1
Else
max = num2
End If
上述代碼中,max的值將為20,因為num2的值比num1的值大。
無論使用哪種方法,都可以得到最大值。