时间复杂度:O(√n)
bool primer(int n) { if(n < 2) return false; for(int i = 2; i <= sqrt(n); i ++) if(n % i == 0) return false; return true; }