1. 程式人生 > >取隨機數

取隨機數

spa math next -s port rand pan size ()

1、Random

  import java.util.Random;

  int i = new Random().nextInt(4);

2、Math

  int i = (int)(Math.random()*4);  //Math.random = [0, 1)

取隨機數