程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu1492-The number of divisors(約數) about Humble Numbers

hdu1492-The number of divisors(約數) about Humble Numbers

編輯:C++入門知識

這道題目就是一道數學題,題意大致為問某個數是否為“謙虛數”,就是滿足所有的因子都是由2 , 3 , 5 , 7 這四個質因子所組成的數據,然後問這個數有多少個因子;

解法:就是將數據拆分,統計每個素因子的個數,然後直接相乘即可,至於為什麼,自己看數論有關書籍。需要注意的就是最後直接取余統計的話,最終剩下的結果為1,所以使用循環判斷n是否為1, 判斷語句 if 也可以

 

#include<iostream>   
#include<cstring>   
#include<algorithm>   
#include<cstdio>   
#include<cmath>   
  
using namespace std;  
  
#define LL long long    
int main()  
{  
    LL n ;  
    int a , b , c , d ;  
  
    while( cin >> n  , n )  
    {     
        a = b = c = d = 1 ;   
        while( n != 1 )  
        {  
            while( n % 2 == 0 )  
            {  
                n /= 2 ;  
                a++ ;   
            }  
                  
            while( n % 3 == 0 )  
            {  
                n /= 3 ;  
                b++ ;  
            }  
            while(n % 5 == 0 )  
            {  
                n /= 5 ;   
                c++ ;   
            }  
            while( n % 7 == 0 )  
            {  
                n /= 7 ;  
                d++ ;  
            }         
        }  
        cout << ( a * b * c * d ) << endl ;  
    }  
    return 0 ;  
}  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved