function DG(x,y){
if(x>=y){
return x;
}
else if(x>=y){
return x;
}
}
document.write("5和 4 的较大值是:"+DG(5,4)+"<br>");
document.write("6和3的较大值是:"+DG(6,3)+"<br>");
在这个函数里面赋值比较大小,先传入参数,然后才能比较,从慕课网学到现在给自己一个记录吧!!!
function DG(x,y){
if(x>=y){
return x;
}
else if(x>=y){
return x;
}
}
document.write("5和 4 的较大值是:"+DG(5,4)+"<br>");
document.write("6和3的较大值是:"+DG(6,3)+"<br>");
在这个函数里面赋值比较大小,先传入参数,然后才能比较,从慕课网学到现在给自己一个记录吧!!!
相关课程