#include "stdio.h"
double poly(duoble);
void main()
{
double x,y;
scanf("%lf",&x);
y=poly(x);
printf("%.2lf\n",y);
}
double poly(double h)
{
double y,t;
double a[5]={1.1,2.2,3.3,4.4,5.5};
int i;
y=a[0];
for(i=1;i<5;i++)
{ t*=h;
y=y+a[i]*t;}
return y;
}
添加回答
举报
0/150
提交
取消