JAVA学习之素数的判断

主要思想是先赋一个初始的bool值来判断其是否为素数。

class su
{
	public static void main(String[] args) 
	{
		int count =0;
		for (int i=1;i<=1000;i++ )
		{
			boolean b=false;
			for (int j=2; j<i; j++)
			{
				if(i%j==0){
					b=false;break;
				}
				else{
					b=true;
				}
			}
         if(b==true){count++;
			 System.out.println(i);
		 }
		}
          System.out.println( "素数个数是: " + count);
		//System.out.println("Hello World!");
	}
}

  

posted @ 2018-04-10 22:23  we_are_young  阅读(268)  评论(0编辑  收藏  举报