码迷,mamicode.com
首页 > 编程语言 > 详细

零起点学算法25——判断是否直角三角形

时间:2017-11-12 16:25:38      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:nbsp   算法   scanf   can   printf   turn   ==   print   while   

#include <stdio.h>
int main()
{
     int a, b, c;
     while(scanf("%d%d%d",&a,&b,&c)!=EOF){
        if(a>0 && b>0 && c>0 && a+b>c && a+c>b && b+c>a)
        {
            if (a*a+b*b==c*c||a*a+c*c==b*b||b*b+c*c==a*a)
            printf("yes\n");
            else
            printf("no\n");
        }
        else
      {printf("no\n"); }
      }
return 0;
}

零起点学算法25——判断是否直角三角形

标签:nbsp   算法   scanf   can   printf   turn   ==   print   while   

原文地址:http://www.cnblogs.com/ostrich-sugar/p/7821707.html

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