编译出错问题
源程序为:#include<stdio.h>
#include<math.h>
void main()
{
float a,b,c,s,dime;//其中dime表示面积
scanf("%f%f%f\n",&a,&b,&c);
s=(a+b+c)/2;
dime=sqrt(s*(s-a)(s-b)(s-c));//可能是错误语句但本人找不出毛病
printf("dime=%f\n",dime);
}
可是提示(error C2064: term does not evaluate to a function)到底哪里出错了?