Run ID:147092
提交时间:2026-02-02 17:23:18
#include<bits/stdc++.h> using namespace std; double x,a,b,c,d; int main(){ scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); x=a*x*x*x+b*x*x+c*x+d; cout<<fixed<<setprecision(5)<<x; return 0; }