如何在vb6.0中编制能够返回两个整型数中较大数的函数?

 我来答
lxe121976
2010-12-08 · TA获得超过1022个赞
知道小有建树答主
回答量:682
采纳率:68%
帮助的人:255万
展开全部
Function max(a As Integer, b As Integer) As Integer
Dim tmp As Integer
If a < b Then
tmp = b
Else
tmp = a
End If
max = tmp
End Function

Private Sub CommandButton1_Click()
Dim a As Integer
Dim b As Integer
a = 16
b = 15
MsgBox max(a, b)
End Sub
上面是函数,下面是调用
ickaka
2010-12-08 · TA获得超过323个赞
知道小有建树答主
回答量:358
采纳率:0%
帮助的人:0
展开全部
跟上面差不多。

Function max(a As Integer, b As Integer) As Integer
If a < b Then
max = b
Else
max = a
End If
End Function

Private Sub Command1_Click()
Dim x As Integer
Dim y As Integer
x = 11
y = 15
MsgBox max(x, y)
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式