package youg; import java.util.Random; public class hidden { public int rand() { int sta=1; //Date d=new Date(); double time=System.currentTimeMillis(); Random r=new Random(); sta=r.nextInt((int)time%1000)%10; System.out.println(sta); return sta; } public static void main(String args[]) { hidden h=new hidden(); System.out.println(h.rand()); } }