Laplace transforms pdf

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

CLICK HERE

Monday, 6 July 2015

Pythagorean triples

#include<stdio.h>
int main()
{
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if((a*a)==(b*b)+(c*c))
printf("yes");
else if((b*b)==(c*c)+(a*a))
printf("yes");
else if((c*c)==(a*a)+(b*b))
printf("yes");
else
 printf("no");
return 0;
}