使用VBScript脚本语言编写一个函数,用来比较三个数字的大小,并返回最大值。

 我来答
网海1书生
科技发烧友

2011-10-19 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26228

向TA提问 私信TA
展开全部
dim a,b,c,d
a=inputbox("请输入第一个数")
b=inputbox("请输入第二个数")
c=inputbox("请输入第三个数")
if a>=b and a>=c then d=a
if b>=a and b>=c then d=b
if c>=a and c>=b then d=c
msgbox "最大的数是" & d
MrPerformance
2011-10-20 · TA获得超过376个赞
知道小有建树答主
回答量:439
采纳率:0%
帮助的人:315万
展开全部
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)
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
缓步莫迟疑C
2011-10-20 · TA获得超过1.1万个赞
知道大有可为答主
回答量:6217
采纳率:73%
帮助的人:6522万
展开全部
<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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式