coder


私信TA

用户名:tomato

访问量:9457

签 名:

tomato

等  级
排  名 3345
经  验 1957
参赛次数 3
文章发表 10
年  龄 0
在职情况 学生
学  校 xynu
专  业 软件工程

  自我简介:

解题思路:根据素数定义,枚举从2到N所有可能的除数,以此判断是否为素数。

注意事项: emm 错了,要用筛法求

参考代码:

#include <iostream>
using namespace std;
bool isPrimeNumber(int n);
int main(int argc, char** argv)
{
    int N,j;
    cin>>N;
    if(N<2)
    	return 0;
    for(j=2; j<=N; ++j)
    {
    	if(isPrimeNumber(j))
    	{
    	    cout<<j<<endl;
	}
    }
    return 0;
}
bool isPrimeNumber(int n)
{
    for(int i=2; i<n; ++i)
    {
	if(n%i==0)
	    return false;
    }
    return true;
}


 

0.0分

0 人评分

  评论区

  • «
  • »