Problem1568--多项式函数-2

1568: 多项式函数-2

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 7  Solved: 5
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求实现一个求多项式的函数f(x)=ax3+bx2+cx+d ,其中a=0.8 b=3 c=9 d=1 

函数接口定义:

double f(double x);

其中x是用户传入的参数,要求为实数。

裁判测试程序样例:

#include <stdio.h>
double f(double x);
int main()
{
    double x;
 
    while(scanf("%lf",&x)!=EOF)
     printf("%.1f\n",f(x)); 
    return 0;
}
/* 你的代码将被嵌在这里 */

Input

输入一个实数x。

测试数据有多组,处理到输入结束。


Output

输出多项式的值,结果要求保留1位小数。

每个输出占1行


Sample Input Copy

1.2 
2.3
0.5
-3.1 
0.6

Sample Output Copy

17.5
47.3
6.3
-21.9
7.7

Source/Category

函数