<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
//定义函数
function str(a,b){
if(a>b){
return a
}else if(a<b){
return b
}else{
return '相等';
}
//函数体,判断两个整数比较的三种情况
}
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+str(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+str(6,3)+"<br>" );
document.write(" 8 和 8 相等吗:"+str(8,8)+"<br>" );
</script>
</head>
<body>
</body>
</html>
哈哈。系统推荐来的,让我回答问题,贼忐忑。一看原来是,教学的,白拿分了。哈哈哈哈哈哈。