题解 | #质因数的个数#从2开始,只要能被整除,就一直除。

质因数的个数

https://www.nowcoder.com/practice/20426b85f7fc4ba8b0844cc04807fbd9

#include <stdio.h>
int main() {
    int n;
    while (scanf("%d", &n) != EOF) {
        int count = 0;
        for (int i = 2; i * i <= n; i++) {
            while (n % i == 0) {
                count++;
                n /= i;
            }
        }
        if (n >= 2) count++;
        printf("%d\n", count);
    }
    return 0;
}

全部评论

相关推荐

求offer的大角牛:不吃香菜
点赞 评论 收藏
分享
身边有人上海、深圳&nbsp;6、7k&nbsp;都去了,真就带薪上班了。
程序员小白条:木的办法, 以后越来越差,还是家附近宅着吧,毕业的人越来越多,岗位都提供不出来,经济又过了人口红利期
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务