這題用"平方和公式"就能解出答案
#include<stdio.h>
int main() {
int n;
while( scanf("%d", &n)!=EOF && n ) {
printf("%d\n", (n*(n+1)*(2*n+1))/6);
}
return 0;