Odpowiedź:
#include <iostream>
#include <math.h>
using namespace std;
int main ()
{
double a,b,c;
cout << "Podaj dlugosc boku a = " <<endl;
cin>>a;
cout << "Podaj dlugosc boku b = " << endl;
cin>>b;
cout << "Podaj dlugosc boku c = " << endl;
cin>>c;
if (a+b >c && a+c >b && c+b >a)
double obwod=a+b+c;
cout << "Obwod trojkata wynosi = " << obwod << endl;
}
else
cout << "Z bokow o tej dlugosci nie mozna zbudowac trojkata" <<endl;
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
#include <math.h>
using namespace std;
int main ()
{
double a,b,c;
cout << "Podaj dlugosc boku a = " <<endl;
cin>>a;
cout << "Podaj dlugosc boku b = " << endl;
cin>>b;
cout << "Podaj dlugosc boku c = " << endl;
cin>>c;
if (a+b >c && a+c >b && c+b >a)
{
double obwod=a+b+c;
cout << "Obwod trojkata wynosi = " << obwod << endl;
}
else
cout << "Z bokow o tej dlugosci nie mozna zbudowac trojkata" <<endl;
}
Wyjaśnienie: