Hi, i'm a beginner in dev c++ and i need to write a program that can add and subtract polynomials.
So far my program asks for the highest power of x, then asks the user to input coefficients based on the power. (for example the user inputs 2 as highest power, the program will ask for coefficients for degree 2, 1, and 0.)
But i put it in a loop so i don't know how it will store the numbers the user inputted and add or subtract them. I'm lost. Help me?