본문 바로가기

Programming Language/Java & Scala

Math함수를 이용하여 랜덤 숫자 추출하기

테스트를 위해 랜덤 숫자를 추출해야할 때가 있습니다. 이때는 Math함수를 사용하면 됩니다.

 

0부터 9까지 랜덤 숫자

(int)(Math.random()*10)

 

0부터 99까지 랜덤 숫자

(int)(Math.random()*100)

 

1부터 100까지 랜덤 숫자

(int)(Math.random()*100) +1

 

반응형