Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97007 程诺 06计算f(x)的值 C++ Wrong Answer 1 MS 272 KB 177 2024-11-10 10:45:04

Tests(2/10):


Code:

#include<iostream> #include<iomanip> using namespace std; int main(){ float x,a,b,c,d; cin>>x>>a>>b>>c>>d; printf("%.5f",a*x*x*x+b*x*x+c*x+d); return 0; }


Run Info:

------Input------
2.8 3.2 4.2 6.6 4.4
------Answer-----
126.05440
------Your output-----
126.05439