zzuli OJ 1014: 求三角形的面积

Description

 给出三角形的三条边,求三角形的面积。

Input

 输入三角形的三条边长(实数),数据之间用空格隔开。

Output

输出三角形的面积,结果保留2位小数。

Sample Input

2.5 4 5

Sample Output

4.95

HINT

用海伦公式或其他方法均可。


#include<stdio.h>
#include<math.h> //math.h中相关数学函数的声明

int main(void)
{
	double a, b, c;    //定义double类型变量
	double s, area;   //定义area存储面积,s存储表达式(a+b+c)/2的值

	scanf("%lf%lf%lf", &a, &b, &c); //读入三个边长
	s = (a + b + c) / 2;  // 为书写表达式方便,首先计算(a + b + c) / 2存入变量s
	area = sqrt(s * (s - a) * (s - b) *(s - c));  //按海伦公式计算面积
	printf("%.2f\n", area );
	return 0;
}



你可能感兴趣的:(c,算法,ACM)