• 2021-04-14
    【单选题】以下表达式产生一个0~7之间(含0,7)的随机整数的是 () 。
    A. Math.floor(Math.random()*6) B. Math.floor(Math.random()*7) C. Math.floor(Math.random()*8) D. Math.ceil(Math.random()*8)
  • Math.floor(Math.random()*8)

    内容

    • 0

      在Math对象中,获取绝对值的方法为 A: random() B: floor() C: abs() D: pow()

    • 1

      下列哪些语句是正确的Math对象方法 A: Math.random() B: Math.rnd() C: Math.max(数值1,数值2) D: Math.floor(数值)

    • 2

      使用Math对象的 random方法编制一个产生0-100(含1,100)之间的随机整数的函数.

    • 3

      以下能够产生[1,100]之间的随机整数的是 A: (int)(Math.floor(Math.random()*100+1)); B: (int)(Math.ceil(Math.random()*100+1)); C: Math.ceil(Math.random()*100+1); D: Math.floor(Math.random()*100+1);

    • 4

      Math类的random()方法可以产生一个()之间的()类型随机数。