算法【判断三角形是的类型以及计算面积】

Q:在这里插入图片描述
A:

首先,根据三角形判定定理:两边之和大于第三边,判断是否是三角形。然后根据海伦定理,求得三角形的面积。接着,如果三边相等是等边三角形,两边相等为等腰三角形,两边之和等于第三边为直角三角形。

#include<iostream>
#include <math.h>
using namespace std;

// Is it a triangle?
int main() {
    //the edge of triangle.
    float a, b, c,s,area;
    cin>>a>>b>>c;
    if (a + b > c && a + c > b && b + c > a) {
        // Heron's formula
        s = (a+b+c)/2.0;
        area = sqrtf(s*(s-a)*(s-b)*(s-c));
        cout<<"the area is: "<<area<<endl;
        if(a==b && b ==c){
            cout<<"the triangle is Equilateral triangle!"<<endl;
        }else if(a==b || b==c || a==c){
            if(pow(a,2)+pow(b,2)==pow(c,2)||pow(a,2)+pow(c,2)==pow(b,2)||pow(b,2)+pow(c,2)==pow(a,2)){
                cout<<"the triangle is Isosceles right triangle!"<<endl;
            }else{
                cout<<"the triangle is Isosceles triangle!"<<endl;
            }
        }else if(pow(a,2)+pow(b,2)==pow(c,2)||pow(a,2)+pow(c,2)==pow(b,2)||pow(b,2)+pow(c,2)==pow(a,2)){
            cout<<"the triangle is Right triangle!"<<endl;
        }else {
            cout<<"the triangle is ordinary triangle!"<<endl;
        }
    }else{
        cout<<"not a triangle"<<endl;
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值