Which set is more "random"?
Math.random() for Java or random for Mathematica? Java is in blue, Mathematica in red.
numbers are from 0 to 50 (51?) 
EDIT: It's a histogram generated in Mathematica.
Java Source (ugly)
public static void main(String[] args) {
// TODO Auto-generated method stub
int i = 0;
int sum = 0;
int counter = 0;
String randomNumberList = " ";
int c = 0;
while (c != 50){
while (i != 7) {
i = (int) (51 * Math.random());
sum += i;
++counter;
randomNumberList += " " + i;
}
i = 0;
System.out.print("\n" + randomNumberList);
++c;
}
}
Mathematica source (output.txt is the dump from Java)
dataset = ReadList["~/Desktop/output.txt", Number]
dataset2 = RandomReal [{0, 50}, 50000]
Histogram[{dataset, dataset2}]
[EDIT]: I was just learning loops when I did the code. Sorry for the confusion. Now I made a cleaner version and they are about equally distributed. I guess that arbitrary loop ending made a big difference.

new code:
public class RandomNums {
public static void main(String[] args) {
int count = 0;
for (int i = 0; i <= 50000; i++){
int j = (int) (50 * Math.random());
System.out.print(j + " ");
count++;
if (count == 50){
System.out.println("\n");
count = 0;
}
}
}
}

while(i!=7)? I can't tell how many numbers your Java code is generating. Why not just generate 50000 random numbers in a single loop? – Yaroslav Bulatov Feb 12 '11 at 17:21