• 2022-07-28
    下面可以产生大于等于0,小于10的随机整数的Java语句是()。
    A: Math.random()*10
    B: Random.nextInt(10)
    C: (int)Math.random()*10
    D: (int)(Math.random()*10)
  • D

    内容

    • 0

      (5-1)下面()程序段可以产生一个不大于100的随机整数。 A: getInteger(100); B: System.getInt(100); C: Random.nextInt(100); D: Random random=new Random();int aInt=random.nextInt(100);

    • 1

      要产生[10,50]之间的随机整数使用()表达式。 A: (int)(10+Math.random()50) B: 10+(int)(Math.random()41) C: 10+(int)(Math.random()40) D: 10+(int)Math.random()41

    • 2

      如果要产生一个1-10之间的随机整数,下面表达式空白处填 。 (int)( +Math.random()*10);

    • 3

      阅读下面的代码,输出结果是( ) public static void main(String&#91;&#93; args) { Random random1 = new Random(10); Random random2 = new Random(10); for(int i=0;i<5;i++){ System.out.print(random1.nextInt(5)); } for(int i=0;i<5;i++){ System.out.print(random2.nextInt(5)); } }

    • 4

      【单选题】以下 () 表达式产生一个 10~30 之间 ( 含 10,30) 的随机整数 A. Math.floor(Math.random()*21)+10 B. Math.floor(Math.random()*31)+20 C. Math. floor(Math.random()*20)+10 D. Math.ceil(Math.random()*30)+20