1258. S05-03 判断并求三角形面积

if(a+b>c && b+c>a && a+c>b){

s = (a + b + c) / 2.0; area = sqrt(s * (s - a) * (s - b) * (s - c)); printf("%.2f\n", area); }