/*
求101到200之间有多少个素数
*/
class StringTest
{
public static void main(String[] args)
{
int count = 0;
for (int x=101; x<=200; x++)
{
boolean flag = true;//定义一个标记
for (int y=2; y<=(x/2); y++)//意义一个变量,小于等于所求数的1/2
{
if(x%y==0)//判断是否为素数
{
flag = false;//如果不是,改变标记
break;//终止循环
}
}
if(flag)//是素数
{
System.out.print("x="+x+"\t");//打印该值
count++;
}
}
System.out.println("count="+count);
}
}
|
|