提交时间:2024-12-21 10:42:38

运行 ID: 2708

#include <bits/stdc++.h> using namespace std; int main() { double x,a,b,c,d; cin>>x>>a>>b>>c>>d; cout<<setprecision(7)<<fixed<<a * (x * x * x) + b * (x * x) + c * x + d; return 0; }