f0618.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //==================================
  2. // f0618.cpp
  3. // 求素数个数
  4. //==================================
  5. #include<iostream>
  6. #include<cmath>
  7. using namespace std;
  8. //----------------------------------
  9. bool isPrime(int n){
  10.   int sqrtn=sqrt(n*1.0);
  11.   for(int i=2; i<=sqrtn; ++i)
  12.     if(n%i==0) return false;
  13.   return true;
  14. }//---------------------------------
  15. int main(){
  16.   int num=0;
  17.   for(int i=2; i<=100000000; ++i)
  18.     if(isPrime(i))
  19.       num++;
  20.   cout<<num<<endl;
  21. }//=================================
  22.