VB比较十个数的大小

来源:互联网 发布:大数据分析模型 包括 编辑:程序博客网 时间:2024/05/18 01:05

Private Sub Command1_Click()

Dim a As Integer

Dim b As Integer

Dim c As Integer

Dim d As Integer

Dim e As Integer

Dim f As Integer

Dim g As Integer

Dim h As Integer

Dim i As Integer

Dim j As Integer

 

 

a = 44

b = 36

c = 9

d = 5

e = 345

f = 1

g = 89

h = 60

i = 53

j = 120

 

If a > b Then

  Max= a

Else

Max = b

End If

If c > Max Then

Max = c

End If

If d > Max Then

Max = d

End If

If e > Max Then

Max = e

End If

If f > Max Then

Max = f

End If

If g > Max Then

Max = g

End If

If h > Max Then

Max = h

End If

If i > Max Then

Max = i

End If

If j > Max Then

Max = j

End If

Print Max

End Sub

 

原创粉丝点击