Zad 1:
#include
#include
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 << "
x1 = " << (-b-pierwiastek)/(2*a);
cout << "
x2 = " << (-b+pierwiastek)/(2*a);
}
if (delta < 0)
cout << "Nie ma pierwiastków";
return 0;
}
Zad 2:
#include
#include
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 << "
Obwod: " << p*2;
cout << "
Pole: " << (sqrt(p*(p-a)*(p-b)*(p-c)));
return 0;
}