题解 | #质因数的个数#

质因数的个数

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

#include <bits/stdc++.h>
using namespace std;

int jisuan(int x){
    int count = 0;
    for(int i = 2 ; i <= x / i ; i++){
        if(x % i == 0){
            int s = 0;
            while(x % i == 0){
                x = x / i;
                s++;
            }
            count = count + s;
        }
    }
    if(x > 1) count ++;
    return count;
}

int main() {
    int n;
    while(cin >> n){
        cout << jisuan(n) << endl;
    }
}

#算法#
全部评论

相关推荐

线性袋鼠:别听牛客上一帮伪人在那说,小厂不能去,必须去大厂,听他们放屁吧。学院本+一些一本最终的归宿就是中小厂,大厂那么好进吗
我的实习日记
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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