Blame view

P96767_en/S001-AC.cc 290 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>
#include <cmath>
#include <iomanip>

using namespace std;

int main()
{
	double x,coef,result=0,deg=0;
	cin >> x;
	while(1)
	{
		cin >> coef;
		if(cin.eof())
		{
			cout << setprecision(4) << fixed << result << endl;
			return 0;
		}
		result += coef*pow(x,deg++);
	}
}