👤

Scrieti un program in C++ care pentru trei numere naturale citite de la tastatura determină dacă pot fi laturile unui triunghi şi daca acesta este dreptunghic.

Răspuns :

#include <iostream>

using namespace std;

int a,b,c;

int main()

{

   cout << "introdu 3 numere: " << endl;

   cin >> a >> b >> c;

   if (a*b*c>0 && a+b>c && a+c>b && b+c>a)

   {

      cout << " pot fi laturile unui triunghi  ";

      if (a*a+b*b==c*c || a*a+c*c==b*b || b*b+c*c==a*a)

           {cout << " dreptunghic";}

      else cout << " nu dreptunghic";

   }

   else {cout << " nu pot fi laturile unui triunghi";}

}