public static boolean prime(int n){
if(n<=1)
return false;
int z=2;
if(n==2)
return true;
while(z<Math.sqrt(n)){
if(z mod n==0)
return false;
z++;
}
return true;
}
任何线索我的代码有什么问题?我收到 7 个“类、接口或枚举”错误,期待...