【单选题】以下()表达式产生一个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)
【单选题】以下()表达式产生一个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)
参考答案和解析
B
相关考题:
( 17 )可以产生 30-50 (含 30 和 50 )之间的随机整数的表达式是A ) Int(Rnd*21+30)B ) Int(Rnd*20+30)C ) Int(Rnd*50-Rnd*30)D ) Int(Rnd*30+50)
可以产生30一50(含30和50)之间的随机整数的表达式是A.Int(Rnd*21+30)B.Int(Rnd*20+30)C.Int(Rnd*50-Rnd$30)D.Int(Rnd*30+50)
可以产生30-50(含30和50)之间的随机整数的表达式是( )。A.Int(Rnd*21+30)B.Int(Rnd*20+30)C.Int(Rnd*50—Rnd*30)D.Int(RND*30+50)
在VB语言中,能产生1~100之间(含0和100)的随机整数的表达式为()。A、INT(RND*100)B、INT(RND*100)+1C、INT(RND(100))D、INT(RND(100))+1
以下()表达式产生一个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)
下列Visual Basic表达式中,能产生一个10到99之间(包括10和99)随机整数的是()。A、Rnd()*89B、Rnd()*50+10C、Int(Rnd()*89)+10D、Int(Rnd()*90)+10
单选题下面可以产生20~30(含20和30)的随机整数的表达式是( )。AInt(Rnd*10+20)BInt(Rnd*11+20)CInt(Rnd*20+30)DInt(Rnd*30+20)
单选题下列Visual Basic表达式中,能产生一个10到99之间(包括10和99)随机整数的是()。ARnd()*89BRnd()*50+10CInt(Rnd()*89)+10DInt(Rnd()*90)+10
单选题以下()表达式产生一个0~7之间(含0,7)的随机整数。AMath.floor(Math.random()*6)BMath.floor(Math.random()*7)CMath.floor(Math.random()*8)DMath.ceil(Math.random()*8)
单选题在VB语言中,能产生1~100之间(含0和100)的随机整数的表达式为()。AINT(RND*100)BINT(RND*100)+1CINT(RND(100))DINT(RND(100))+1
单选题产生[60,100]之间的随机整数的VisualBasic表达式是()。AInt(Rnd*40)+60BInt(Rnd*40)+61CInt(Rnd*41)+60DInt(Rnd*41)+61
填空题在包含有()头文件的程序文件中,使用()能够产生出0~20之间的一个随机整数。