相似三角形

来源:互联网 发布:fc-san网络 编辑:程序博客网 时间:2024/05/17 02:42

相似三角形

Problem Description


给出两个三角形的三条边,判断是否相似。


Input
多组数据,给出6正个整数,a1,b1,c1,a2,b2,c2,分别代表两个三角形。(边长小于100且无序)


Output
如果相似输出YES,如果不相似输出NO,如果三边组不成三角形也输出NO。

Example Input


1 2 3 2 4 63 4 5 6 8 103 4 5 7 8 10

Example Output


NOYESNO

代码:

#include<stdio.h>int main(){    double a1,b1,c1,a2,b2,c2,temp,a,b,c;    while(scanf("%lf%lf%lf%lf%lf%lf",&a1,&b1,&c1,&a2,&b2,&c2) !=EOF)    {        if(a1 > b1)        {            temp = a1; a1 = b1; b1 = temp;        }        if(a1 > c1)        {            temp = a1; a1 = c1; c1 = temp;        }        if(b1 > c1)        {            temp = b1; b1 = c1; c1 = temp;        }        if(a2 > b2)        {            temp = a2; a2 = b2; b2 = temp;        }        if(a2 > c2)        {            temp = a2; a2 = c2; c2 = temp;        }        if(b2 > c2)        {            temp = b2; b2 = c2; c2 = temp;        }        a = a1 / a2;        b = b1 / b2;        c = c1 / c2;        if(a1 + b1 > c1 && a2 + b2 > c2 && c1 - b1 < a1 && c2 - b2 < a2)        {            if(a == b && b == c)                printf("YES\n");            else                printf("NO\n");        }        else            printf("NO\n");    }    return 0;}