mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
12 lines
246 B
C
12 lines
246 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
/*This program does not use #define to solve the problem*/
|
|
int main()
|
|
{
|
|
double a,b,c,p;
|
|
scanf("%lf %lf %lf",&a,&b,&c);
|
|
p=(a+b+c)/2;
|
|
printf("%.3lf\n",sqrt(p*(p-a)*(p-b)*(p-c)));
|
|
return 0;
|
|
}
|