欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将输入的三个数字按从小到大的顺序输出

程序员文章站 2022-05-28 13:29:22
...

将输入的三个数两两比较,将较大的值交换到后面,分别比较ab、bc、ab即可。


```javascript
   <script>
           document.write(judgeThem(3,2,1));
           function judgeThem(a,b,c){            
           var temp;            
           if(a > b){                
           	temp = a;
              	a = b;   
                b = temp;
                }
                if(b > c){	
                temp = b;
                b = c;
                c = temp;            
                }
                if(a > b){
                temp = a;
                a = b;   
                b = temp;
                }
                return(a+ "&nbsp" + b + "&nbsp" + c);        }    
  </script>