let a = 0;
for(let i=100;i>0;i--){
for(let j=0;j<100;j++){
if(i%j==0){
a++;
}
if(a==2){
console.log(j);
a = 0;
}
}
a = 0;
}
网友评论