function coms(a,b)
{
if(a>b)
{
return a;
}
else if(a<b)
{
return b;
}
else
{
return"两个数相等"
}
}
document.write("8和7相比谁大"+coms(8,7)+"<br />">;
document.write("5和7相比谁大"+coms(5,7)+"<br />");
document.write("10和10"+coms(10,10));
倒数第三行后面 "<br />">;
敲错了,是"<br />");