JAVA输出50个素数
Posted cocobear9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA输出50个素数相关的知识,希望对你有一定的参考价值。
public class 前五十个素数 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i=2,j=2 ,isPrime=1;
int count=0 ;
for(i=2;count<50;i++)
{
isPrime=1;
for(j=2;j<i;j++)
{
if(i%j==0)
{
isPrime=0;
break;
}
}
if(isPrime==1)
{
if(count%10==0)
{
System.out.println();
}
count++;
System.out.print(i+" ");
}
}
}
}
以上是关于JAVA输出50个素数的主要内容,如果未能解决你的问题,请参考以下文章