Temat:
InformatykaAutor:
ryliesheltonUtworzono:
1 rok temuOdpowiedź:
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
float a,b,c,x1,x2,x0,delta;
cout<<"Podaj a: ";cin>>a;
cout<<"Podaj b: ";cin>>b;
cout<<"Podaj c: ";cin>>c;
delta = (b*b)-(4*a*c);
if(delta>0){
x1 = (-b-sqrt(delta))/(2*a);
x2 = (-b+sqrt(delta))/(2*a);
cout<<"Miejsca zerowe tej funkcji to x1= "<<x1<<" oraz x2= "<<x2<<endl;
}else if(delta==0){
x0 = -b/(2*a);
cout<<"Miejscem zerowym tej funkcji jest x0= "<<x0<<endl;
}else{
cout<<"Delta jest mniejsza od zera. Brak rozwiazan.";
}
return 0;
}
Autor:
clarebeasley
Oceń odpowiedź:
4