4장 임의의 정수 만들기(랜덤!)

slee2·2021년 9월 3일
0

Java의 정석

목록 보기
6/28
post-thumbnail
post-custom-banner

Math.random()

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

이렇게 곱셈과 덧셈뺄셈 그리고 형변환을 이용해서 난수의 범위를 정할 수 있다.

0개의 댓글