Hello World
Saturday, 2 June 2012
UVa 10302 Summation of Polynomials Solution
#include<stdio.h>
#include<math.h>
int main()
{
long double n,sum;
while(scanf("%Lf",&n)==1)
{
sum=(n*n*(n+1)*(n+1))/4;
printf("%.0Lf\n",sum);
}
return 0;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment