Files
python/TangDou/XiTi/1144.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

27 lines
567 B
C++

#include <bits/stdc++.h>
using namespace std;
//判断是不是质数
bool isPrime(int n) { //最快的方法
if (n < 2) return false;
if (n == 2 || n == 3) return true;
if (n % 6 != 1 && n % 6 != 5) return false;
for (int i = 5; i <= floor(sqrt(n)); i += 6)
if (n % i == 0 || n % (i + 2) == 0)
return false;
return true;
}
int main() {
int n;
cin >> n;
int count = 0;
for (int i = 2; i <= n; ++i) {
if (isPrime(i))count++;
}
cout << count << endl;
return 0;
}