Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | None | 0 0
  1.  //The sum of the squares of the first ten natural numbers is,
  2.     //      1^2 + 2^2 + ... + 10^2 = 385
  3.  
  4.     //The square of the sum of the first ten natural numbers is,
  5.     //      (1 + 2 + ... + 10)^2 = 55^2 = 3025
  6.  
  7.     //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.
  8.  
  9.     //Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.
  10.  
  11.     public class Challenge
  12.     {
  13.         public long Execute(int x)
  14.         {
  15.             return 0;
  16.         }
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement