?
2013-01-23 05:48:33 UTC
public static void main(String[]args){
int[]big=new int[30];
for(int x=0; x<30; x++){
int y=((Math.random()*100)+1);
big[x]=y;
System.out.println(big[x]);
}
}
}
I Wrote this and it said I have a possible loss of precision on line five. What does this mean and what do I do?