定义一个函数过程max来实现求两个正整数的最大值,急
问题描述:
定义一个函数过程max来实现求两个正整数的最大值,急
答
sub maxnum(a b)
if a>b then
maxnum=a
else
maxnum=b
end if
end sub