Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
51454 | shtest | 计算多项式的值 | C++ | 通过 | 0 MS | 260 KB | 217 | 2024-09-21 21:30:10 |
#include<iostream> #include<iomanip> #include<math.h> using namespace std; int main() { double a,b,c,d,x; cin>>x>>a>>b>>c>>d; cout<<fixed<<setprecision(7)<<a*pow(x,3)+b*pow(x,2)+c*x+d<<endl; return 0; }