溫馨提示×

vb怎么求最大值和最小值

vb
小億
510
2024-01-23 10:32:08
欄目: 編程語言

在VB中,可以使用Math類的Max和Min方法來求最大值和最小值。

例如,下面的代碼演示了如何求一個整數(shù)數(shù)組的最大值和最小值:

Dim numbers() As Integer = {10, 5, 20, 15, 8}
Dim maxValue As Integer = Math.Max(numbers)
Dim minValue As Integer = Math.Min(numbers)

Console.WriteLine("最大值: " & maxValue)
Console.WriteLine("最小值: " & minValue)

輸出結(jié)果為:

最大值: 20
最小值: 5

另外,如果要求兩個數(shù)的最大值和最小值,可以直接使用Math類的Max和Min方法:

Dim a As Integer = 10
Dim b As Integer = 5

Dim maxValue As Integer = Math.Max(a, b)
Dim minValue As Integer = Math.Min(a, b)

Console.WriteLine("最大值: " & maxValue)
Console.WriteLine("最小值: " & minValue)

輸出結(jié)果為:

最大值: 10
最小值: 5

0