The sum of the squares of the first ten natural numbers is,
The square of the sum of the first ten natural numbers is,
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 385 = 2640.
Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.
int main()
{
clock_t tb,te;
tb=clock();
int i,squaressum = 0;
long sumsquares = 0;
for (i = 1; i <= 100 ; i++)
{
squaressum+=i*i;
sumsquares+=i;
}
sumsquares = sumsquares*sumsquares;
printf("\n答案:%ld\n",sumsquares-squaressum);
te=clock();
printf("\n时间差:%d毫秒\n",te-tb);
return 0;
}