function fun(x,y) //函数体,判断两个整数比较的三种情况 { return x>=y?x:y; }
function app(x,y)
{
//函数体,判断两个整数比较的三种情况
var x,y;
if(x>y)
{
return x;
}
else if(x<y)
{
return x;
}
else if(x==y)
{
return x,y;
}
}
req1=app(5,4);
req2=app(3,6);
req3=app(3,3);
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+req1+"<br>");
document.write(" 6 和 3 的较小值是:"+req2+"<br>" );
document.write(" 3 和 3 的较大值是:"+req3 );