标签:素数 ber main static bsp system false color 之间
1 public class PrimeNumber{//100-200直接有多少素数 2 public static void main(String[] args){ 3 int a=0; 4 for(int i=100;i<=200;i++){ 5 boolean bool=true; 6 int n=1; 7 while(bool){ 8 n++; 9 if(i==n){ 10 break; 11 } 12 if(i%n==0){ 13 bool=false; 14 } 15 } 16 if(bool){ 17 a++; 18 System.out.println(i+"是素数"); 19 } 20 } 21 System.out.println("100-200之间一共有"+a+"个素数"); 22 } 23 }
标签:素数 ber main static bsp system false color 之间
原文地址:http://www.cnblogs.com/zks0910/p/7245947.html