Math.random( )

Hi_na·2022년 12월 5일
0

Java

목록 보기
3/11
post-thumbnail

Math.random( )

범위 : 0.0 <= Math.random( ) < 1.0
수식 : int num = (int)(Math.random( )*(length))+offset;

  • Math.random은 double형이기 때문에 정수로 나타내고 싶으면, intCasting을 해주면 된다.
  • length : offset번호부터 총 몇 개의 숫자를 추출할 것인지
  • offset : 시작번호

Math.random( )으로 랜덤 주사위 번호 뽑기✌️

int num = (int)(Math.random()*6) + 1;
		
		if(num == 1) {
			System.out.println("1번이 나왔습니다.");
		} else if(num == 2) {
			System.out.println("2번이 나왔습니다.");
		} else if(num == 3) {
			System.out.println("3번이 나왔습니다.");
		} else if(num == 4) {
			System.out.println("4번이 나왔습니다.");
		} else if(num == 5) {
			System.out.println("5번이 나왔습니다.");
		} else {
			System.out.println("6번이 나왔습니다.");
		} 

0개의 댓글