第二个输出呢?
我这样写的,为什么document.write只有第一句话的,第二句话没了,是什么原因呢?
function max(a,b){
if(a>b){
max=a;
}
else{
max=b;
}
return max;
}
document.write(" 5 和 4 的较大值是:"+max(5,4)+"
");
document.write(" 6 和 3 的较大值是:"+max(6,3));