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