Math.random() 랜덤한 숫자를 나오게 하는 코드 라이브러리 (int) (Math.random() * 100); --99까지 랜덤한 숫자 (int) (Math.random() * 100)+1; --100까지 랜덤한 숫자 package a_variable; public class RandomClass { public static void main(String[] args) { System.out.println((int)(Math.random()*7+1)); //System.out.println((int)(Math.random()*16/1+1+1)); } }