代码如下:#include cmath
bool isPrime(int n) { int i; for (i = 2; i = sqrt(n); i++) { if (n % i == 0) return false; } return true;}