定义一个可以接收三个数字的函数,函数体内返回三个数字中最大的数字 →(javascript:代返回值的函数的申明和调用)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" style="text/css" href="">
<style></style>
<script></script>
</head>
<body>
<!-- 定义一个可以接收三个数字的函数,函数体内返回三个数字中最大的数字 !
在前面学习php时计算三个数字的较大值方法:
$max=$s1>$s2 ? $s1 : $s2;
$max=$max>$s3 ? $max : $s3;
echo $max;
-->
<script>
function getMax(n1,n2,n3){
//1、声明变量 max ,表示的是三个数中的最大值,并将n1,先赋值给max
var max = n1;
//2、将 n2 与 max 进行比较,如果n2 比 max大,则将 n2 赋值给 max
//n2>max && max=n2;
max = (n2>max?n2:max);
//3、将 n3 与 max 进行比较,如果n3 比 max大,则将 n3 赋值给 max
n3>max && (max = n3);
return max;
}
function testGetMax(){
var max = getMax(45,65,78); //任意三个数字
console.log(max);
alert("最大值为:"+max);
}
</script>
<button οnclick="testGetMax()">获取最大值</button>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" style="text/css" href="">
<style></style>
<script></script>
</head>
<body>
<!-- 定义一个可以接收三个数字的函数,函数体内返回三个数字中最大的数字 !
在前面学习php时 计算三个数字的较大值方法:
$max=$s1>$s2 ? $s1 : $s2;
$max=$max>$s3 ? $max : $s3;
echo $max;
-->
<script>
function getMax(n1,n2,n3){
//1、声明变量 max ,表示的是三个数中的最大值,并将n1,先赋值给max
var max = n1;
//2、将 n2 与 max 进行比较,如果n2 比 max大,则将 n2 赋值给 max
//n2>max && max=n2;
max = (n2>max?n2:max);
//3、将 n3 与 max 进行比较,如果n3 比 max大,则将 n3 赋值给 max
n3>max && (max = n3);
return max;
}
function testGetMax(){
var max = getMax(45,65,78); //任意三个数字
console.log(max);
alert("最大值为:"+max);
}
</script>
<button οnclick="testGetMax()">获取最大值</button>
</body>
</html>