1. #include<iostream>
    2. #include<math.h> // sqrt 在 math.h的头文件中
    3. using namespace std;
    4. bool is_prime(int x) {
    5. int i;
    6. for (i = 2; i <= sqrt(x); i++) {
    7. if (x % i == 0) return false;
    8. }
    9. return true;
    10. }