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高级教程》

以上就是javascript怎么求三个数的最大值的详细内容,更多请关注其它相关文章!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。