A:If a >= b And a >= c Then Text4.Text = Str(a)If b >= a And b >= c Then Text4.Text = Str(b)If c >= a And c >= b Then Text4.Text = Str(c)
B:Max = aIf b > Max Then Max = bIf c > Max Then Max = cText4.Text = Str(Max)
C:If a > b And a > c Then Text4.Text = Str(a)ElseIf b > a And b > c Then Text4.Text = Str(b)Else Text4.Text = Str(c)End If
D:If a > b Then If a > c Then Text4.Text = Str(a) Else Text4.Text = Str(c)Else If b > c Then Text4.Text = Str(b) Else Text4.Text = Str(c)End If