Answer to Question #18134 in AJAX | JavaScript | HTML | PHP for chetan

Question #18134
write a program to find the difference between sum of the squares and square of the sums of n numbers
1
Expert's answer
2012-11-08T09:19:09-0500
var n = prompt("Enter n");
if (n == '') {alert('Empty field!');}
else {
var sumOfSquare = 0;
var i;
for (i = 1; i <= n; i++) {
sumOfSquare += i*i;
}
var squareOfSum = n*(n+1)/2;
alert("Difference is " + (sumOfSquare - squareOfSum));
}



Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS