Random generator = new Random();
int integerArray[20];
int counterArray[20];
int foundSeven=0;
int i,j;
for (j=0;j<1000; j++) {
for (i=0; i<20; i++) {
integerArray[i] = generator.nextInt();
if ((integerArray[i]==7)&&(foundSeven==0)) {
foundSeven = 1;
counterArray[i]++;
println("Found the number 7 at position " + i);
}// end if
} // end for
} // end for
for (i=0;i<20;i++) {
println("Found at position " + i + " " + counterArray[i] + " times");
}
|