Răspuns:
#include <iostream>
#include <cmath>
using namespace std;
short R,G,B;
int main()
{
cin >> R >> G >> B;
if (R<0 || R>255 || G<0 || G>255 || B<0 || B>255)
cout << "NU E CULOARE";
else
{
if (abs(R-G)<=10 && abs(R-B)<=10 && abs(G-B)<=10)
cout << "GRI";
else cout << "CULOARE";
}
return 0;
}
Explicație:
posibil nu ai cercetat cazurile cand R>G sau G>B sau ...