December 2018 1 12 Report
Program na liczenie pierwiastkow funkcji kwadratowej, lecz nie działa poprawnie... W ogole nie liczy pierwiastkow. poza tym, jezeli delta jest dodatnia, w ogole nie wykonuje obliczen.


#include
#include
using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */


int main() {

float a,b,c,d,p,r,s1,s2,x0,x1,x2;

cout<<"Podaj 3 wartosci funkcji kwadratowej (a,b,c)"< cin>>a;
cin>>b;
cin>>c;
d=(b*b)-(4*a*c);


if (d<0) {
r=-b/(2*a);
s1=sqrt(d);
s2=-s1;
cout<<"Rozwiazania : "< } else

if (d=0) {
x0=-b/(2*a);
cout<<"Rozwiazanie : "< } else

if (d>0) {
x1=(-b-sqrt(d))/(2*a);
x2=(-b+sqrt(d))/(2*a);
cout<<"Rozwiazaniaaaaa : "< }

return 0;
}

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.