[boj](b 3)4153直角三角形
インプリメンテーション
質問する
質問する
リンク
に答える #include <cmath>
pow(a, 2)
コード#コード# #include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a, b, c;
while (1)
{
cin >> a >> b >> c;
if (a == 0 && b == 0 && c == 0)
break;
int M = max(a, max(b, c));
if (M == a)
{
if (pow(a, 2) == (pow(b, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else if (M == b)
{
if (pow(b, 2) == (pow(a, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else
{
if (pow(c, 2) == (pow(b, 2) + pow(a, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
}
}
Reference
この問題について([boj](b 3)4153直角三角形), 我々は、より多くの情報をここで見つけました
https://velog.io/@peanut_/boj-b3-직각삼각형
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <cmath>
pow(a, 2)
コード#コード# #include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a, b, c;
while (1)
{
cin >> a >> b >> c;
if (a == 0 && b == 0 && c == 0)
break;
int M = max(a, max(b, c));
if (M == a)
{
if (pow(a, 2) == (pow(b, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else if (M == b)
{
if (pow(b, 2) == (pow(a, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else
{
if (pow(c, 2) == (pow(b, 2) + pow(a, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
}
}
Reference
この問題について([boj](b 3)4153直角三角形), 我々は、より多くの情報をここで見つけました
https://velog.io/@peanut_/boj-b3-직각삼각형
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int a, b, c;
while (1)
{
cin >> a >> b >> c;
if (a == 0 && b == 0 && c == 0)
break;
int M = max(a, max(b, c));
if (M == a)
{
if (pow(a, 2) == (pow(b, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else if (M == b)
{
if (pow(b, 2) == (pow(a, 2) + pow(c, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
else
{
if (pow(c, 2) == (pow(b, 2) + pow(a, 2)))
cout << "right" << endl;
else
cout << "wrong" << endl;
}
}
}
Reference
この問題について([boj](b 3)4153直角三角形), 我々は、より多くの情報をここで見つけました https://velog.io/@peanut_/boj-b3-직각삼각형テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol