写一函数 给三边求面积
#include"stdio.h"#include"math.h"
main()
{
int s(int x , int y ,int z)
int a, b, c;
float temp;
scanf("%d%d%d",&a,&b,&c);
temp=s(x,y,z);
printf("s=%f",temp);
}
int s(int x , int y ,int z)
{
int a,b,c;
int p=(a+b+c)/2;
float s;
s=sqrt(p*(p-a)*(p-b)*(p-c));
return s;
}
什么地方出了错???