关于Pascal语言的习题
任意三个数,求其中最大的数。
参考答案:function max(a,b,c:double):double;
begin
if a>b then
if a>c then
max:=a
else
max:=c
else
if b>c then
max:=b
else
max:=c;
end;
大致就是这样了,可能语法有毛病自己改一下吧
任意三个数,求其中最大的数。
参考答案:function max(a,b,c:double):double;
begin
if a>b then
if a>c then
max:=a
else
max:=c
else
if b>c then
max:=b
else
max:=c;
end;
大致就是这样了,可能语法有毛病自己改一下吧