在C ++中的二次方程式中找到解数的程序

在本教程中,我们将讨论一个程序来查找二次方程中的解数。

为此,我们将得到一个二次方程。我们的任务是计算和找到给定二次方程式具有的实解数。

示例

#include <iostream>
using namespace std;
//检查方程解
void checkSolution(int a, int b, int c) {
   if (((b * b) - (4 * a * c)) > 0)
      cout << "2 solutions";
   else if (((b * b) - (4 * a * c)) == 0)
      cout << "1 solution";
   else
      cout << "No solutions";
}
int main() {
   int a = 2, b = 5, c = 2;
   checkSolution(a, b, c);
   return 0;
}

输出结果

2 solutions