خرید بک لینک
gameover.bog.ir

http://s9.picofile.com/file/8270115218/roots_quadratic_equation.jpg


#include <iostream>
#include <cmath>
using namespace std;

int main() {

    float a, b, c, x1, x2, determinant, realPart, imaginaryPart;
    cout << "Enter coefficients a, b and c: ";
    cin >> a >> b >> c;
    determinant = b*b - 4*a*c;
    
    if (determinant > 0) {
        x1 = (-b + sqrt(determinant)) / (2*a);
        x2 = (-b - sqrt(determinant)) / (2*a);
        cout << "Roots are real and different." << endl;
        cout << "x1 = " << x1 << endl;
        cout << "x2 = " << x2 << endl;
    }
    
    else if (determinant == 0) {
        cout << "Roots are real and same." << endl;
        x1 = (-b + sqrt(determinant)) / (2*a);
        cout << "x1 = x2 =" << x1 << endl;
    }

    else {
        realPart = -b/(2*a);
        imaginaryPart =sqrt(-determinant)/(2*a);
        cout << "Roots are complex and different."  << endl;
        cout << "x1 = " << realPart << "+" << imaginaryPart << "i" << endl;
        cout << "x2 = " << realPart << "-" << imaginaryPart << "i" << endl;
    }

    retu 0;
}

Output

Enter coefficients a, b and c: 4
5
1
Roots are real and different.
x1 = -0.25
x2 = -1

برچسب: برنامه محاسبه ی سن عقلی,برنامه محاسبه ی سن,برنامه محاسبه ی معدل,برنامه محاسبه ی معدل نهایی,برنامه محاسبه ی معدل امتحان نهایی,برنامه محاسبه ی معدل اول دبیرستان,برنامه محاسبه ی bmi,نرم افزار محاسبه ی کالری اندروید,نرم افزار محاسبه ی معدل امتحان نهایی,نرم افزار محاسبه ی معدل, نویسنده: ایلیا حیدری تاريخ: شنبه 17 مهر 1395 ساعت: 23:12

صفحه بندی