void demo06()
{
int x ,y;
int count = 0;
for (x = 101; x < 200; x++) {
for (y = 2; y < x; y ++) {
if (x%y == 0) {
break;
}
}
if (y >= x) {
count ++;
printf("%d ",x);
}
}
printf("\n");
}
void demo06()
{
int x ,y;
int count = 0;
for (x = 101; x < 200; x++) {
for (y = 2; y < x; y ++) {
if (x%y == 0) {
break;
}
}
if (y >= x) {
count ++;
printf("%d ",x);
}
}
printf("\n");
}