1. 程式人生 > >三角形面積之海倫公式

三角形面積之海倫公式

這裡寫圖片描述
這裡寫圖片描述
這裡寫圖片描述
這裡寫圖片描述

CODE

#include<stdio.h>
#include <math.h>
int main()
{
    int a,b,c;
    float p,s;
    scanf("%d%d%d",&a,&b,&c);
    if(a>=b+c || b>=a+c || c>=a+b)
        return 0;
    else
    {
        p=(float)(a+b+c)/2;
        s=(float)sqrt(p*(p-a)*(p-b)*(p-c));
        printf
("%.2f",s); return 0; } }