提交时间:2024-12-22 17:40:06

运行 ID: 3250

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