解题思路:
注意事项:
参考代码:
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main()
{
double a, b, c, d, x,t=0;
cin >> x >> a >> b >> c >> d;
t = a *pow(x,3) + b *pow(x,2) + c * x + d;
cout <<fixed<< setprecision(7) << t;
return 0;
}
0.0分
0 人评分
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:765 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1154 |
C二级辅导-计负均正 (C语言代码)浏览:652 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:643 |
简单的a+b (C语言代码)浏览:564 |
简单的a+b (C语言代码)浏览:601 |
字符串的输入输出处理 (C语言代码)浏览:1021 |
DNA (C语言描述,蓝桥杯)浏览:1653 |
Cylinder (C语言描述+详细分析)浏览:3379 |
愚蠢的摄影师 (C++代码)浏览:980 |