public class HelloWorld {
/**
* @param args
*/
public static void main(String[] args) {
getCount(100, 999);
}
public static void getCount(int from, int to) {
for (int i = from; i <= to; i++) {
if (i == 2) {
System.out.print(i + " ");
}
for (int j = 2; j < i; j++) {
if (i % j == 0) {
break;
} else {
if (j == i - 1) {
System.out.print(i + " ");
}
}
}
}
}
} |