这个VB程序求三个数中最大值有什么问题?
PrivateSubCommand1_Click()DimaAsInteger,bAsInteger,cAsIntegera=InputBox("输入","a=")b=I...
Private Sub Command1_Click()
Dim a As Integer, b As Integer, c As Integer
a = InputBox("输入", "a=")
b = InputBox("输入", "b=")
c = InputBox("输入", "c=")
a = Max
If b > a Then b = Max
If c > a Then c = Max
Print Max
End Sub 展开
Dim a As Integer, b As Integer, c As Integer
a = InputBox("输入", "a=")
b = InputBox("输入", "b=")
c = InputBox("输入", "c=")
a = Max
If b > a Then b = Max
If c > a Then c = Max
Print Max
End Sub 展开
3个回答
展开全部
先设定某个值为最大,然后和其它的两个比较一下,就得出结果了。
代码如下:
'假设三个数分别是x,y,z
dim maxium as integer '定义变量
maxium =x '先设置某个值
if y>maxium then maxium=y '如果Y比它大,变量改为Y
if z>maxium then maxium=z '如果z比它大,变量改为z
Print "最大值:" & maxium
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a =str( InputBox("输入", "a="))
b = str(InputBox("输入", "b="))
c = str(InputBox("输入", "c="))
If b > a Then max = a
If c > a Then max = b
b = str(InputBox("输入", "b="))
c = str(InputBox("输入", "c="))
If b > a Then max = a
If c > a Then max = b
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询