1. 程式人生 > >求1-1024中的質數

求1-1024中的質數

let ll = [2];
let ls  = [2];
for(let i=3;i<=1024;i++){
  let count = 0;
  for(let j=2;j<=i-1;j++){
     if(i%j==0){
       count++;
     }
  }
  if(count==0){
    ll.push(i)
  }
}

console.log(ll,"---------------ll---------------")