Question: Evoid main() int a; int x_value; string polinom [4]; 2*x*x+5*x+10; 4*x*x+19; polinom[0] polinom[1] polinom[2] = x*x+1; Write a program in C++; The program will
Evoid main() int a; int x_value; string polinom [4]; "2*x*x+5*x+10"; "4*x*x+19"; polinom[0] polinom[1] polinom[2] = "x*x+1"; Write a program in C++; The program will ask the equation number and x value.After that the program will display the result. polinom[3] = "x+7"; cout < < "equation number:"; cin>> a; cout < < "x value "; cin >> x_value;|| (You must get the equation by reading the polinom[i] text. Not by writing it yourself)
Step by Step Solution
There are 3 Steps involved in it
include iostream include string include cmath using nam... View full answer
Get step-by-step solutions from verified subject matter experts
