44.分治算法练习: 一元三次方程求解
·
·
·
·
总时间限制:
1000ms
内存限制:
65536kB
描述
有形如:ax3+bx2+cx+d=0
给出该方程中各项的系数(a,b,c,d
输入
一行,包含四个实数a,b,c,d,相邻两个数之间用单个空格隔开。
输出
一行,包含三个实数,为该方程的三个实根,按从小到大顺序排列,相邻两个数之间用单个空格隔开,精确到小数点后2位。
样例输入
1.0 -5.0 -4.0 20.0
样例输出
-2.00 2.00 5.00
代码:
#include
using namespace std;
#include
#include
#include
#include
double a,b,c,d;
double f(double x)
{
}
int t=0;
int main()
{
}