一道Matlab的题,很简单的

2025-03-13 04:14:38
推荐回答(1个)
回答1:

可这样:
funtion L=big(a,b)
if a>b
L=a;
elseif b>a
L=b;
else
disp('两数相等')
L=[];
end
调用函数命令:L=big(5,8)