class zhishu
{
public static void main(String[] args)
{
for (int x=100;x<1000 ;x++ )
{
int count=0;
for (int y=1;y<= x ;y++ )
{
if (x%y == 0)
{
count++;
}
}
if (count < 3)
{
System.out.println(x+"为质数");
}
}
}
}
作者: 郑飞 时间: 2014-11-14 09:08
int count = 0 后面的分号改成英文的作者: 菜鸟一号 时间: 2014-11-14 09:12
亲,997明显不能被3整除吧:L作者: FlyFish 时间: 2014-11-14 11:23
小学数学是硬伤…………作者: ◆﹎尛、言斤♀ 时间: 2014-11-14 11:38
997能被3整除?作者: 马个了黑_邓 时间: 2014-11-14 12:11
class ZhiShu
{
public static void main(String[] args)
{
// long ts = System.currentTimeMillis();
for (int x=100;x<1000 ;x++ )
{
int count=0;
for (int y=2;y<x ;y++ )
{
if (x%y == 0)
{
count++;
break;
}
}
if (count==0)
{
System.out.println(x+"为质数");
}
}
// long te = System.currentTimeMillis();
// System.out.println(te-ts);
}
}