欧美1区2区3区激情无套,两个女人互添下身视频在线观看,久久av无码精品人妻系列,久久精品噜噜噜成人,末发育娇小性色xxxx

題解 | #質因數(shù)的個數(shù)#

質因數(shù)的個數(shù)

http://fangfengwang8.cn/practice/20426b85f7fc4ba8b0844cc04807fbd9

#include <stdio.h>

int main() {
    
    int n;
    while(scanf("%d",&n)!=EOF){
        
        int count=0;
        int i=2;
        while(n>1){
            if(n%i==0){
                count++;
                n/=i;
                i=2;
            }
            else{
                i++;
            }
        }

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

    return 0;
}

全部評論

相關推薦

評論
點贊
收藏
分享

創(chuàng)作者周榜

更多
??途W(wǎng)
牛客企業(yè)服務