a, b, c sunt numerele x, y, z doar ca in oridinea de la cel mai mic la cel mai mare.
#include <iostream>
using namespace std;
int main() {
int x, y, z, a, b, c;
cin >> x >> y >> z;
a = min( min( x, y ), z );
c = max( max( x, y ), z );
b = x + y + z - a - c;
if ( a + b > c ) {
if ( a == b && b == c )
cout << "Este triunghi echilateral";
else if ( a == b || b == c )
cout << "Este triunghi isoscel";
else
cout << "Este triunghi normal";
} else
cout << "Nu este triunghi";
return 0;
}