水仙花数(daffodil)

输出100~999中的所有水仙花数。若3位数ABC满足ABC=A^3+B^3+C^3,则称其为水仙花数。例如153=1^3+5^3+3^3,所以153是水仙花数。 

#include 
//#include 
//#include  
 
int cube ( const int n )
{
    return n * n * n;
}
 
bool isNarcissistic ( const int n )
{
    int hundreds = n / 100;
    int tens = (n / 10) % 10;//int tens = n / 10 - hundreds * 10;
    int ones = n % 10;
    return cube(hundreds) + cube(tens) + cube(ones) == n;
}
 
int main(void)
{
    int i;
    for ( i = 100; i < 1000; ++ i )
    {
        if ( isNarcissistic(i) )
            printf("%d\n", i );
    }
    return 0;//return EXIT_SUCCESS;

你可能感兴趣的:(水仙花数(daffodil))