文件目录

#include <iostream>
#include <iomanip> //in输入out输出manipulator控制器
using namespace std;

int main()
{
    double x, a, b, c, d;
    cin >> x >> a >> b >> c >> d;
    cout << fixed << setprecision(7) << a * x * x * x + b * x * x + c * x + d;
    return 0;
}
// error 错误 程序无法执行
// warning 警告 有隐患,但是不影响使用