题解 | #KiKi求质数个数#

KiKi求质数个数

https://www.nowcoder.com/practice/d3a404ee0f8d41f98bf4707035d91086

#include <stdbool.h>
#include <stdio.h>

int main() 
{
    int i;
    int j;
    int count=0;
    bool k;

    for(i=100;i<1000;i++)
    {
        k=true;
        for(j=2;j<i;j++)
        {
            if((i%j)==0)
            {
                k=false;
            }
        }
        if(k)
        {
            count++;
        }
    }

    printf("%d",count);

    return 0;
}

全部评论

相关推荐

如题,字节跳动怎么才能看到自己的面评,找hr说看不到
SoulStar:自己应该看不到,这个是字节比较保密的信息,之前有mentor加我,说他能看到,但是不能给我说,给我说了他可能就要被辞退了
点赞 评论 收藏
分享
09-27 10:54
重庆大学 C++
人已微死:致敬传奇耐测王。
投递小米集团等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务