0

...但是当我在控制台中调用该函数时,它返回未定义。我是 JavaScript 新手,所以我可能犯了一个基本错误,如果有人能帮助我,我会很感激 :-)。

这是代码:

var randomPrint = function(){

x = Math.floor(Math.random() * 100);
y = Math.floor(Math.random() * 100);
z = Math.floor(Math.random() * 100);

   console.log(x, y, z);

   if(x > y && x > z)
   {
     console.log("The greatest number is" + " " + x);
   }
   else if(y > z && y > x)
   { 
     console.log("The greatest number is" + " " + y);
   }
   else if(z > y && z > x)
   {   
    console.log("The greatest number is" + " " + z);
   }
};
randomPrint();
4

5 回答 5

1

试试这个,内置的方法来获得最大值

Math.max(x,y,z);
于 2013-09-04T07:15:04.440 回答
1

如果你可以扔掉其他两个数字:

for (var i = 0, max = -Infinity; i < 3; ++i) {
    max = Math.max(Math.floor(Math.random() * 100), max);
}

alert(max);
于 2013-09-04T07:18:11.107 回答
1

理智的方式:

var nums = [];
for (var i = 0; i < 3; i++) {
    nums.push(Math.floor(Math.random() * 100));
}

console.log('Largest number is ' + Math.max.apply(null, nums));

或者:

nums = nums.sort();
console.log('Largest number is ' + nums[nums.length - 1]);

是的,该函数将返回 undefined,因为您没有从该函数返回任何内容。您的条件可能都不匹配,因此您也看不到任何其他输出。

于 2013-09-04T07:09:29.853 回答
0

deceze 的答案是一个更好的解决方案,但我也看到你的工作。控制台中的示例输出是:

35 50 47
The greatest number is 50
undefined

未定义的部分是因为该函数没有返回任何内容。你可以把它写成

var randomPrint = function(){

    x = Math.floor(Math.random() * 100);
    y = Math.floor(Math.random() * 100);
    z = Math.floor(Math.random() * 100);

   console.log(x, y, z);

   if(x > y && x > z) {
        var biggest = x;
        console.log("The greatest number is" + " " + x);
   } else if(y > z && y > x) { 
       console.log("The greatest number is" + " " + y);
       var biggest = y;
   } else if(z > y && z > x) {   
       console.log("The greatest number is" + " " + z);
       var biggest = z;
   }
   return biggest;
};

randomPrint();
于 2013-09-04T07:17:07.007 回答
0
        var randomPrint = function(){

    x = Math.floor(Math.random() * 100);
    y = Math.floor(Math.random() * 100);
    z = Math.floor(Math.random() * 100);

       console.log(x, y, z);
       console.log("this is max " +Math.max(x,y,z);)
}();

你的逻辑也没有错。undefined 可能会出现在其他地方,这很好。

88 36 15 localhost/:16 最大数为 88

这是我得到的代码的输出。

于 2013-09-04T07:17:57.653 回答