使用VBScript脚本语言编写一个函数,用来比较三个数字的大小,并返回最大值。
展开全部
Function TheMax(num1,num2,num3)
dim temp
if num1-num2>0 then
temp=num1
elseif num1-num2<0 then
temp=num2
elseif num1-num2=0 then
temp=num1
end if
if temp-num3>0 then
TheMax=temp
elseif temp-num3<0 then
TheMax=num3
elseif temp-num3=0 then
TheMax="equal"
end if
end Function
msgbox "which is the max? (2,9,1)"
msgbox TheMax(2,9,1)
dim temp
if num1-num2>0 then
temp=num1
elseif num1-num2<0 then
temp=num2
elseif num1-num2=0 then
temp=num1
end if
if temp-num3>0 then
TheMax=temp
elseif temp-num3<0 then
TheMax=num3
elseif temp-num3=0 then
TheMax="equal"
end if
end Function
msgbox "which is the max? (2,9,1)"
msgbox TheMax(2,9,1)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script language="VBScript">
Function big3(a,b,c)
Dim t
If a > b Then t = a Else t = b
If c > t Then t = c
big3 = t
End Function
Msgbox big3(1,2,3)
</script>
Function big3(a,b,c)
Dim t
If a > b Then t = a Else t = b
If c > t Then t = c
big3 = t
End Function
Msgbox big3(1,2,3)
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询