This is what I have so far. I am having issues with getting the File Writer
to work.
import java.util.Random;
public class Sort {
public static void main(String[] args) {
Random rand = new Random();
int q = 10000;
for (int i = 0; i < q; i++) {
int foo = rand.nextInt();
System.out.println(foo);
}
}
}
I will be using the file to sort later.