Laplace transforms pdf

CLICK THE LINK BELOW TO DOWNLOAD LAPLACE TRANSFORMS IMPORTANT FORMULAS IN THE FORM OF PDF

CLICK HERE

Tuesday, 7 July 2015

C program for sum of powers of numbers

#include<stdio.h>
int main()
{
int a,s;
scanf("%d",&a);
s=((6*a*a*a*a*a)+(15*a*a*a*a)+(10*a*a*a)-a)/30;
printf("%d",s);
return 0;
}

No comments:

Post a Comment