4.定义一个可以接收三个数字的函数,函数体内返回三个数字中最大的数字

定义一个可以接收三个数字的函数,函数体内返回三个数字中最大的数字   →(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>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值