The sum of the squares of the first ten natural numbers is,
1^(2) + 2^(2) + ... + 10^(2) = 385
The square of the sum of the first ten natural numbers is,
(1 + 2 + ... + 10)^(2) = 55^(2) = 3025
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.
最初の10つの自然数の平方の和は
1^2 + 2^2 + ....+10^2 =385
最初の10つの自然数の和の平方は
(1+2....+10)^2 = 3025
故に、最初の10つの自然数の平方の和と、和の平方の差は
3025-385=2640となります。
では最初の100つの自然数の平方の和と和の平方の差はいくらになるでしょう。
��日本語訳PNN)
簡単すぎw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
double suma = 0;
double sumb = 0;
for (int i = 1; i <= 100; i++)
{
suma += i * i;
sumb += i;
}
sumb = sumb * sumb;
Console.WriteLine(Math.Abs(suma - sumb));
Console.ReadLine();
}
}
}
出力結果:25164150
0 件のコメント:
コメントを投稿