• 2022-06-26
    以下能够产生[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);