○ 임의의 수(난수) 구하기 int number = (int) (Math.random() * 원하는 난수범위의 숫자 갯수) 0, 1, 2 중에 난수를 구하고 싶을 때(int) (Math.random() * 3) 1, 2, 3 중에 난수를 구하고 싶을 때(int) (Math.random() * 3) + 1 1 ~ 100 중에 난수를 구하고 싶을 때 (int) (Math.random() * 100) + 1 100 ~ 102 중에 난수를 구하고 싶을 때(int)(Math.random()*3) + 100 100 ~ 102 중에 난수를 구하고 싶을 때 (int)(Math.random()*3) + 25 ○ 예제 소스 // Math 클래스 사용double dblNum;dblNum = Math.random(); // ..