Вычислить и вывести в один столбик 14 значений выражения y=x^2+2x+2 при увеличении x от начального значения -4 с шагом 0,2
#include using std::cout; using std::cin; using std::endl; #include using std::pow; int main() { double x = -4.0, y; for(int i = 0; i < 14; i++) { y = pow(x, 2) + 2 * x + 2; x += 0.2; cout << "y = " << y << endl;<br> } cin.get(); return 0; }