您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇内容主要讲解“javascript如何求三个数的最大值”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“javascript如何求三个数的最大值”吧!
javascript求三个数的最大值的方法:首先创建一个HTML示例文件;然后输入三个值;最后通过“Math.max(inps[0].value,inps[1].value,inps[2].value)”求三个数的最大值即可。
本文操作环境:windows7系统、javascript1.8.5版,DELL G3电脑
javascript怎么求三个数的最大值?
javascript中输入三个数求最大值方法
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="text"><br> <input type="text"><br> <input type="text"><br> <input type="button" value="确认"> </body> <script> var inps = document.querySelectorAll("input"); inps[3].onclick = function(){ alert(Math.max(inps[0].value,inps[1].value,inps[2].value)); //得到的.value是string型的,需要转换为number var a = Number(inps[0].value); var b = Number(inps[1].value); var c = Number(inps[2].value); if(a>b){ if(a>c){ alert(a); }else{ alert(c); } }else{ if(b>c){ alert(b); }else{ alert(c); } } // 枚举法 列举所有可能 if(a>=b && a>=c){ alert(a); } if(b>=a && b>=c){ alert(b); } if(c>=a && c>=b){ alert(c); } //定义中间变量,定义最大值 var max = 0; if(a >= max){ max = a; } if(b >= max){ max = b; } if(c >= max){ max = c; } alert(max); } </script> </html>
到此,相信大家对“javascript如何求三个数的最大值”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。