Higher Math

简介: http://acm.hdu.edu.cn/showproblem.php?pid=2393 1 #include 2 using namespace std; 3 int main() 4 { 5 int n,a,b,c; 6 cin >> n; ...

http://acm.hdu.edu.cn/showproblem.php?pid=2393

 1 #include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     int n,a,b,c;
 6     cin >> n;
 7     for (int i=1;i<=n;i++)
 8     {
 9         cin >> a >> b >> c;
10         if (a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a)
11         {
12             cout << "Scenario #" << i << ":" << endl << "yes" << endl << endl;
13         }
14         else
15         {
16             cout << "Scenario #" << i << ":" << endl << "no" << endl << endl;
17         }
18     }
19     return 0;
20 }

 

img_e00999465d1c2c1b02df587a3ec9c13d.jpg
微信公众号: 猿人谷
如果您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】
如果您希望与我交流互动,欢迎关注微信公众号
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。

目录
相关文章
|
存储
LeetCode 329. Longest Increasing Path in a Matrix
给定一个整数矩阵,找出最长递增路径的长度。 对于每个单元格,你可以往上,下,左,右四个方向移动。 你不能在对角线方向上移动或移动到边界外(即不允许环绕)。
81 0
LeetCode 329. Longest Increasing Path in a Matrix
|
API
LeetCode 374. Guess Number Higher or Lower
我们正在玩一个猜数字游戏。 游戏规则如下: 我从 1 到 n 选择一个数字。 你需要猜我选择了哪个数字。 每次你猜错了,我会告诉你这个数字是大了还是小了。
81 0
LeetCode 374. Guess Number Higher or Lower
|
API
LeetCode 375. Guess Number Higher or Lower II
我们正在玩一个猜数游戏,游戏规则如下: 我从 1 到 n 之间选择一个数字,你来猜我选了哪个数字。 每次你猜错了,我都会告诉你,我选的数字比你的大了或者小了。 然而,当你猜了数字 x 并且猜错了的时候,你需要支付金额为 x 的现金。直到你猜到我选的数字,你才算赢得了这个游戏。
112 0
LeetCode 375. Guess Number Higher or Lower II
A1947 An Olympian Math Problem
Alice, a student of grade 66, is thinking about an Olympian Math problem, but she feels so despair that she cries. And her classmate, Bob, has no idea about the problem. Thus he wants you to help him. The problem is:
91 0
A1947 An Olympian Math Problem
Minimal Square
Minimal Square
94 0
Minimal Square
|
安全 iOS开发
iOS开发-math.h/ceil/floor/round
https://blog.csdn.net/acmicpc123/article/details/50280097
153 0
iOS开发-math.h/ceil/floor/round
|
Python
“cosine_distance“ “KMeansClusterer“ is not defined
“cosine_distance“ “KMeansClusterer“ is not defined
126 0
Maximum Subsequence Sum
最大连续子列和问题,在此给出题解 (浙大PTA https://pintia.cn/problem-sets/16/problems/665)
|
人工智能 机器学习/深度学习
1007. Maximum Subsequence Sum (25)
简析:求最大子列和,并输出其首末元素。在线处理,关键在于求首末元素。 本题囧,16年9月做出来过,现在15分钟只能拿到22分,有一个测试点过不了。
980 0

热门文章

最新文章