Monday, November 17, 2008

Problem #30

Also quite simple of code:


#include <iostream>
#include <string>
#include <ctime>
#include <cmath>

using namespace std;

unsigned int sumFifthPowerOfDigits (unsigned int);

int main()
{
clock_t start = clock();
int total = 0;

for (unsigned int i = 10; i < 1000000; i++)
if (i == sumFifthPowerOfDigits (i))
total += i;

cout << total << endl
<< "Process took " << (static_cast<double> (clock()) - start) / CLOCKS_PER_SEC << " seconds." << endl;
system("pause");
return 0;
}

unsigned int sumFifthPowerOfDigits (unsigned int num)
{
unsigned int total = 0;
char buffer[16];
string str;

sprintf (buffer, "%i", num);
str = buffer;

for (unsigned int i = 0; i < str.size (); i++)
total += pow (static_cast<double> (str[i] - '0'), 5);

return total;
}

No comments: