Warunek PITAGORASA

/*PROGRAM JEST DO UZUPEŁNIENIA !! NIE DZIAŁA  POPRAWNIE*/

 

#include <iostream>
#include <cstdlib>

using namespace std;

int main()
{
int i, j, k;

cout << “Podaj liczbe 1 =”;
cin >> i;

cout << “Podaj liczbe 2 =”;
cin >> j;

cout << “Podaj liczbe 3 =”;
cin >> k;

if (WarunekPitagorasa(i,j,k)==1)
cout << “\nPodane liczby spelniaja warunek Pitagorasa\n”;
else
cout << “\nPodane liczby spelniaja warunek Pitagorasa\n”;

system (“Pause”);
}

int WarunekPitagorasa(int a, int b, int c)
{
if ( c > a && c > b)
if ( a * a + b * b == c * c)
return 1;
else
return 0;
else if ( b > a && b > c)
if ( a * a + c * c == b * b)
return 1;
else
return 0;
else if ( a > b && a > c)
if ( b * b + c * c == a * a)
return 1;
else
return 0;
}