題目:判斷101-200之間有多少個素數,並輸出所有素數
阿新 • • 發佈:2017-07-27
[] bool ole enum print 輸出 static ber while
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 }
題目:判斷101-200之間有多少個素數,並輸出所有素數