#include #include #include int main() { int x, y; cout << "x value y value\n"; cout << "------- --------\n"; for (x = 2; x <= 6; x++) { y = 10 * pow(x,2) + 3 * x - 2; cout << setw(4) << x << setw(11) << y << endl; } return 0; }