Итак, я создаю решатель квадратичных уравнений в c ++ и, похоже, не могу получить правильный вывод о мнимых числах. корни действительных чисел получаются хорошими (например, x = 2 и x = 5), но когда появляются мнимые числа, происходит нечто странное, когда оно показывает (x = -1. # IND) ?? кто-нибудь, пожалуйста, помогите мне понять это? я хочу, чтобы это показывало что-то более похожее на x = 5.287 * i.
Вот мой код
#include <iostream>
#include <string>
#include <cmath>
#include <complex>
using namespace std;
int main() {
cout << "Project 4 (QUADRATIC EQUATION)\nLong Beach City College \nAuthor: Mathias Pettersson \nJuly 15, 2015\n" << endl;
cout << "This program will provide solutions for trinomial expressions.\nEXAMPLE: A*x^2 + B*x^2 + C = 0" << endl;
double a, b, c;
double discriminant;
//Variable Inputs
cout << "Enter the value of a: ";
cin >> a;
cout << "Enter the value of b: ";
cin >> b;
cout << "Enter the value of c: ";
cin >> c;
//Computations
discriminant = (b*b) - (4 * a * c);
double x1 = (((-b) + sqrt(discriminant)) / (2 * a));
double x2 = (((-b) - sqrt(discriminant)) / (2 * a));
//Output
if (discriminant == 0)
{
cout << "The discriminant is ";
cout << discriminant << endl;
cout << "The equation has a single root.\n";
}
else if (discriminant < 0)
{
cout << "The discriminant is ";
cout << discriminant << endl;
cout << "The equation has two complex roots.\n";
cout << "The roots of the quadratic equation are x = " << x1 << "*i, and" << x2 << "*i" << endl;
}
else
{
cout << "The discriminant is ";
cout << discriminant << endl;
cout << "The equation has two real roots.\n";
}
//Final Root Values
cout << "The roots of the quadratic equation are x = ";
cout << x1;
cout << ", ";
cout << x2 << endl << endl;
system("PAUSE");
return 0;
}
double
не представляет комплексные числа.
Вместо прохождения double
в sqrt
:
sqrt(discriminant)
Пройти комплексное число чтобы получить сложный результат:
sqrt(std::complex<double>(discriminant))