0.0과 1.0 사이의 임의의 double값을 반환
0.0 <= Math.random() < 1.0
만약에 내가 1 ~ 3중에 랜덤으로 하나를 갖고 싶다.
3을 곱한다.
0.0 * 3 <= Math.random() * 3 < 1.0 * 3
0.0 <= Math.random() * 3 < 3.0
int형으로 변환
(int)0.0 <= (int)(Math.random() * 3) < (int)3.0
0 <= (int)(Math.random() * 3) < 3
1을 더한다.
0 + 1 <= (int)(Math.random() * 3) + 1 < 3 + 1
1 <= (int)(Math.random() * 3) + 1 < 4
이렇게 곱셈과 덧셈뺄셈 그리고 형변환을 이용해서 난수의 범위를 정할 수 있다.