HDU 2393 Higher Math (判断直角三角形)
Posted dwtfukgv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2393 Higher Math (判断直角三角形)相关的知识,希望对你有一定的参考价值。
题意:给定三个边,判断是不是直角三角形。
析:水题,勾股定理。。。
代码如下:
#include <iostream> #include <cstdio> #include <algorithm> #include <queue> #include <vector> #include <cstring> #include <map> using namespace std; const int maxn = 100; int main(){ int a[5], T; cin >> T; for(int kase = 1; kase <= T; ++kase){ for(int i = 0; i < 3; ++i) scanf("%d", &a[i]); sort(a, a+3); printf("Scenario #%d:\n", kase); printf("%s\n\n", a[0]*a[0] + a[1]*a[1] == a[2]*a[2] ? "yes" : "no"); } return 0; }
以上是关于HDU 2393 Higher Math (判断直角三角形)的主要内容,如果未能解决你的问题,请参考以下文章
A - Higher Math (LightOJ - 1053)