Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
52509 | lixiyuan | 计算多项式的值 | C++ | 编译错误 | 0 MS | 0 KB | 339 | 2024-10-07 19:42:59 |
#include <iostream> #include <iomanip> int main() { double x, a, b, c, d; double result; std::cin >> x >> a >> b >> c >> d; result = a * std::pow(x, 3) + b * std::pow(x, 2) + c * x + d; std::cout << std::fixed << std::setprecision(7); std::cout << result << std::endl; return 0; }