1

我有这个项目,我必须生成随机数学总和......它们都是“除以”总和,所以我想让所有数字均匀。谁能帮我这个?只是问我是否不够清楚=)

<script>
   $(function() {
      var number = document.getElementById("breuken"),
      i = 1;

      for (; i <= 10; i++) {

         var sRandom = Math.floor(Math.random()*10 + 1),
         fRandom = Math.floor(sRandom + Math.random()*(20-sRandom )),
         calc = Math.abs(fRandom / sRandom),
         textInput = document.createElement('input'),
         span = document.createElement('span'),
         p = document.createElement('p');

         textInput._calc = calc;

         textInput.onchange = (function(p) {
            return function(ev) {
               var self = ev.target;
               if (self.value == self._calc) {
                  p.style.color = 'green';                    
               };
            };
         })(p);

         span.innerHTML = fRandom + " : " + sRandom + " = ";

         p.appendChild(span);
         p.appendChild(textInput);

         number.appendChild(p);

      };
   });
</script>
4

2 回答 2

5

要获得偶数随机数:

将你的范围减半并乘以 2

var range = 100;
var number = Math.floor( Math.random() * range / 2 ) * 2;

或继续获得随机数,直到获得偶数

 var number;
 do {
      number = Math.floor(Math.random()*10 + 1)
 } while( number % 2 == 1 );
于 2012-04-12T11:18:22.450 回答
2

获取一个超过 1/2 范围的随机整数并将其加倍。

于 2012-04-12T11:18:47.050 回答