第三章 求100以内的素数
程序员文章站
2022-05-11 20:25:42
...
public class Test5{
public static void main(String args[])
{
int a=1;
for(int i=2;i<=100;i++)
{
for(int j=2;j<i;j++)
{
a=i%j;
if(a==0)
break;
}
if(a!=0)
System.out.println(i+"是素数");
}
}
}
运行截图: