<script type="text/javascript">
//定义函数
function add(x,y){
//函数体,判断两个整数比较的三种情况
var sum,x,y;
sum=x-y;
if(sum>0){
return x;
}else{
if(sum<0){
return y;
}else{
if(sum==0){
var none = "一样大"
return none;
}
}
}
}
req1=add(5,4);
req2=add(3,3);
req3=add(3,6);
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+req1+"<br>");
document.write(" 3 和 3 的较大值是:"+req2+"<br>");
document.write(" 3 和 6 的较大值是:"+req3);
</script>
就比如这段代码里的if else 是不是可以有简写呀 这样写总感觉挺复杂
Jason333
迷途的马尔斯
相关分类