用vb编程:任意输入3个数,输出其中最大值,

问题描述:

用vb编程:任意输入3个数,输出其中最大值,

a=XX
b=YY
c=MM
if a>b then
max=a
else
max=b
end if
if c>max then
max=c
end if