[JAVA 개념정리] 임의의 정수 만들기

Doyeon·2023년 1월 18일
0

JAVA 개념정리

목록 보기
8/13
post-thumbnail
post-custom-banner

Math.random()

  • 0.0 ~ 1.0 사이 임의의 double 값 반환

1 ~ 10 사이 random 한 정수 값 구하기

  1. 0.0 10 <= Math.random() 10 < 1.0 * 10
  2. (int) 0.0 <= (int)(Math.random() * 10) < (int) 10.0
  3. 0 + 1 <= (int)(Math.random() * 10) + 1 < 10 + 1
  4. 1 <= (int)(Math.random() * 10) + 1 < 11

[참고] <Java의 정석 - 기초편>

profile
🔥

0개의 댓글