题解 | #筛选法求素数#

筛选法求素数

https://www.nowcoder.com/practice/06c3dcc303654ef4926654023eca1e5a

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include <stdlib.h>


//写一个函数来判断素数,返回0不是素数,1是素数
int judgement(int i)
{
    int j,k;
    for(j=2;j<i;j++)
    {
        if(i%j==0)
        {
            return 0;
        }
    }
    return 1;

}


int main()
{
    int count=0;
    int i=0,flag=0;

    while(scanf("%d",&m)!=EOF)
    {
        for(i=2;i<=m;i++)
        {
            flag= judgement(i);
            if(flag==1)
            {
                printf("%d ",i);
            }
            if(flag==0)
            {
                count++;
            }

        }
        printf("\n%d",count);


    return 0;
}



全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务