How can I get the user to input an equation and then have my program go through the eqn with multiple sets of var values and come up with a result for each set? It would need to be like using multiple 'For' loops in BASIC. ex: ;prompt the user for input a(b,c)=[cursor] ;user inputs 3b^2+2b*c+c^2 a(b,c)=3b^2+2b*c+c^2 ;now I want to be able to plug multiple values ;in for each var (b and c) and get a for each set