codevs 3164 质因数分解

Posted song-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codevs 3164 质因数分解相关的知识,希望对你有一定的参考价值。

3164 质因数分解

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<stack>
#include<cmath>

using namespace std;


int T;
int main()
{
    scanf("%d",&T);
    for(int i=1;i<=T;i++){
        long long x;
        cin>>x;
        int an=0;
        for(long long j=2;j<=sqrt(x);j++)
            while(!(x%j)){
                x/=j;
                ++an;
            }
        if(x!=1) an++;
        printf("%d
",an);
    }
    return 0;
}

 

以上是关于codevs 3164 质因数分解的主要内容,如果未能解决你的问题,请参考以下文章

3164 质因数分解

CODE[VS] 3164 质因数分解

codevs 1792 分解质因数

codevs1792 分解质因数

Codevs 1313 质因数分解

codevs:1792分解质因数:编写一个把整数N分解为质因数乘积的程序。