f0618.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //==================================
- // f0618.cpp
- // 求素数个数
- //==================================
- #include<iostream>
- #include<cmath>
- using namespace std;
- //----------------------------------
- bool isPrime(int n){
- int sqrtn=sqrt(n*1.0);
- for(int i=2; i<=sqrtn; ++i)
- if(n%i==0) return false;
- return true;
- }//---------------------------------
- int main(){
- int num=0;
- for(int i=2; i<=100000000; ++i)
- if(isPrime(i))
- num++;
- cout<<num<<endl;
- }//=================================