if y>x then '判断是否满足条件
a=y ' 如果满足条件,将y值赋给a,此时y是最大值.
else ' 如果不满足
a=x ‘将x赋值给a,此时x是最大值.
end if
所以说语句是正确的.