" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int PDT;
int DDT;
int podstawa;
int wysokosc;
int wynik_obwodu;
int pole;
int main()
{
cout << "Podaj pierwsza dlugosc trujkata: ";
cin >> PDT;
cout << "Podaj druga dlugosc trujkata: ";
cin >> DDT;
cout << "Podaj podstawe trujkata: ";
cin >> podstawa;
cout << "Podaj wysokosc trujkata: ";
cin >> wysokosc;
wynik_obwodu=(PDT)+(DDT)+(wysokosc);
cout << "Obwod trujkata wynosi: " << wynik_obwodu << endl;
pole=podstawa*wysokosc/2;
cout << "Pole trojkata wynosi: " << pole << endl;
return 0;
}
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double a,b,c,delta,pierwiastek;
cout << "Podaj wspolczynnik a: ";
cin >> a;
cout << "Podaj wspolczynnik b: ";
cin >> b;
cout << "Podaj wspolczynnik c: ";
cin >> c;
delta = b*b-4*a*c;
if (delta == 0)
{
cout << "x0 = "<< -b/(2*a);
}
pierwiastek = sqrt(delta);
if (delta > 0)
{
cout << "\nx1 = " << (-b-pierwiastek)/(2*a);
cout << "\nx2 = " << (-b+pierwiastek)/(2*a);
}
if (delta < 0)
cout << "Nie ma pierwiastków";
return 0;
}
Zad 2:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double a,b,c,p;
cout << "Podaj dlugosc a: ";
cin >> a;
cout << "Podaj dlugosc b: ";
cin >> b;
cout << "Podaj dlugosc c: ";
cin >> c;
p = 0.5*(a+b+c);
cout << "\nObwod: " << p*2;
cout << "\nPole: " << (sqrt(p*(p-a)*(p-b)*(p-c)));
return 0;
}