//输出100到200之间的质数
public class A1 {
public static void main (String[] args)
{
for(int x=100;x<=200;x++)
{
int y;
for( y=2;y<x;y++)
if(x%y==0)
break;
if(x==y)
System.out.println(x);
}
}
}
//输出100到200之间的质数
public class A1 {
public static void main (String[] args)
{
for(int x=100;x<=200;x++)
{
int y;
for( y=2;y<x;y++)
if(x%y==0)
break;
if(x==y)
System.out.println(x);
}
}
}