public class Test1 {
public static void main(String[] args) {
int i,j,count=0;
for( i=2;i<200;i++)
{
for( j=2;j<=i;j++)
{
if(i%j==0)
{
if(i==j)
{
if(i>=101)
{
System.out.print(i+"\t");
count++;
if(count%10==0)
{
System.out.println();
}
}
}
else
break;
}
else if(i%j==0&&i==j)
{
if(i>=101)
{
System.out.print(i+"\t");
count++;
if(count%10==0)
{
System.out.println();
}
}
}
else
continue;
}
}
System.out.println();
System.out.println("101-200之间的素数一共:"+count+"个");
}
}
这个能完整的输出来 |