码迷,mamicode.com
首页 > 其他好文 > 详细

判断三角形的类型

时间:2014-06-25 17:36:48      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color      

接受用户输入的三个整数,作为三角形的三条边,并判断此三角形的类型。

#include<stdio.h>
#include<stdlib.h>

int main(void)
{
    int a;
    int b;
    int c;

    printf("please input a:");
    scanf("%d", &a);

    printf("please input b:");
    scanf("%d", &b);

    printf("please input c:");
    scanf("%d", &c);
    
    int flag = (a*a + b*b > c*c) && (a*a + c*c > b*b) && (b*b + c*c > a*a);
    if(flag)
    {
        if( (a == b) && (a == c) && (b == c))
        {
            printf("等边三角形\n");
        }
        else if((a == b) || (a == c) || (b == c))
        {
            printf("等腰三角形\n");
        }
        else
        {
            printf("普通三角形\n");
        }
    }
    else
    {
        printf("不能构成三角形\n");    
    }

    return EXIT_SUCCESS;
}

 

判断三角形的类型,布布扣,bubuko.com

判断三角形的类型

标签:style   class   blog   code   color      

原文地址:http://www.cnblogs.com/yshyee/p/3806240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!