说明:
1.该代码的编译器为 visual studio 所以该代码中输入函数是scanf_s ,若为其他编译器请则使用 scanf 即可
#include <stdio.h>
#include <math.h>
int main()
{
int a, b, c, p;
double s;
printf("input a,b,c:");
scanf_s("%d,%d,%d", &a, &b, &c);
p = (a + b + c) / 2;
if (a + b >= c && a + c >= b && b + c >= a)
{
s = sqrt(p*(p - a)*(p - b)*(p - c));
printf("s=%lf", s);
}
else
printf("不是三角形");
return 0;
}