To judge an odd integer $$N(>10)$$ is prime or not, we need to c
To judge an odd integer $$N(>10)$$ is prime or not, we need to check if it is divisible by any odd number from 3 to $$\sqrt N $$. The time complexity of this algorithm is $$O(0.5logN)$$. ~@[](2)答案:FALSE