每日一篇:判斷素數

/* 題目:判斷101-200之間有多少素數,並輸出因此素數。 */ class Demo2  { public static void main(String[] args)  { int count=0; for(int i=101;i<200;i+=2){ boolean b=false; for(int j=2;j<Math.sqrt(i);j++){ if(i%j==0){b=false
相關文章
相關標籤/搜索