vb程序设计输入一个数字1~7,分别用select语句和choose函数两种方法用英文显示对应的星期一~星期日
1个回答
展开全部
dim i as integer
private sub command1_click() 'select case 方法
text1.text =int(val(text1.text))
if text1.text >0 and text1.text <8 then
i = text1.text
select case i
case 1
debug.print "Monday"
case 2
debug.print "Tuseday"
……
end select
end if
end sub
private sub command2_click() 'choose方法
text1.text =int(val(text1.text))
if text1.text >0 and text1.text <8 then
i = text1.text
debug.print choose(i,"Monday","Tuseday",……,"Sunday")
end if
end sub
private sub command1_click() 'select case 方法
text1.text =int(val(text1.text))
if text1.text >0 and text1.text <8 then
i = text1.text
select case i
case 1
debug.print "Monday"
case 2
debug.print "Tuseday"
……
end select
end if
end sub
private sub command2_click() 'choose方法
text1.text =int(val(text1.text))
if text1.text >0 and text1.text <8 then
i = text1.text
debug.print choose(i,"Monday","Tuseday",……,"Sunday")
end if
end sub
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询