明雪斋吧 关注:52贴子:2,524
  • 3回复贴,共1

VB-091201

收藏回复

  • 60.191.1.*
Function Max(a As Integer, b As Integer)
    
    If a > b Then
        Max = a
    Else
        Max = b
    End If
End Function
Private Sub Command1_Click()
    Dim a As Integer
    Dim b As Integer
    Dim c As Integer
    
    a = Val(Text1.Text)
    b = Val(Text2.Text)
    c = Val(Text3.Text)
    Print Max(Max(a, b), c)
End Sub



1楼2009-12-01 11:15回复
    Function Max(a As Integer, b As Integer)
        
        If a > b Then
            Max = a
        Else
            Max = b
        End If
    End Function
    Function Min(a As Integer, b As Integer)
        
        If b > a Then
            Min = a
        Else
            Min = b
        End If
    End Function
    Private Sub Command1_Click()
        Dim a As Integer
        Dim b As Integer
        Dim c As Integer
        
        a = Val(Text1.Text)
        b = Val(Text2.Text)
        c = Val(Text3.Text)
        Print Max(Max(a, b), c)
        Print Min(Min(a, b), c)
    End Sub


    IP属地:浙江禁言 |2楼2009-12-01 11:57
    回复
      计算机程序?


      禁言 |3楼2009-12-01 21:31
      回复
        • 124.90.236.*
        VB...


        4楼2009-12-03 12:46
        回复