-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1045.cpp
45 lines (35 loc) · 1.07 KB
/
1045.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// https://judge.beecrowd.com/en/problems/view/1045
/*
Time Complexity =>
Space Complexity =>
*/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ifstream input("input.txt");
ofstream output("output.txt");
double a = 0.0, b = 0.0, c = 0.0;
cin >> a >> b >> c;
vector<double> v = {a, b, c};
sort(v.begin(), v.end(), greater<double>());
if (v[0] >= (v[1] + v[2])) {
cout << "NAO FORMA TRIANGULO" << endl;
} else {
if (pow(v[0], 2) == (pow(v[1], 2) + pow(v[2], 2))) {
cout << "TRIANGULO RETANGULO" << endl;
} else if (pow(v[0], 2) > (pow(v[1], 2) + pow(v[2], 2))) {
cout << "TRIANGULO OBTUSANGULO" << endl;
} else if (pow(v[0], 2) < (pow(v[1], 2) + pow(v[2], 2))) {
cout << "TRIANGULO ACUTANGULO" << endl;
}
if ((v[0] == v[1]) && (v[1] == v[2]) && (v[2] == v[0])) {
cout << "TRIANGULO EQUILATERO" << endl;
} else if ((v[0] == v[1]) || (v[1] == v[2]) || v[2] == v[1]) {
cout << "TRIANGULO ISOSCELES" << endl;
}
}
return 0;
}