双二次方程源代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了双二次方程源代码相关的知识,希望对你有一定的参考价值。
A simple program solving a biquadratic equation.
#include <iostream> #include <math.h> using namespace std; void main() { float a, b, c, dis, x1, x2; cout << "Enter a: "; cin >> a; cout << "Enter b: "; cin >> b; cout << "Enter c: "; cin >> c; dis = b*b - 4*a*c; if ( dis>= 0 ) { x1 = (b - sqrt (dis) ) / 2*a; x2 = (b + sqrt (dis) ) / 2*a; cout << "The result is" << x1 << " and " << x2 << endl; } else { cout << "Dis is less than 0 "; } }
以上是关于双二次方程源代码的主要内容,如果未能解决你的问题,请参考以下文章