public static void prime() {
int count = 1;
for (int i = 2; i <= 100; i++) {
int j;
for (j = 2; j < i; j++) {
if (i % j == 0)
break;
}
if (j >= i) {
System.err.print(i + "\t");
if (count % 5 == 0) {
System.err.println();
}
count++;
}
}
}
其中int count=1;和if (count % 5 == 0) 什么意思我感觉去掉也可以