Simplify the expression by evaluating expressions inside parenthesis first. Follow the order of evaluation, doing multiplications first and then addition and subtraction. It should be possible to reduce any expression to the form ax+b=0. Then x=-b/a. Don
On Apr 4, 11:18 am, arun kumar <[email protected]> wrote: > Given an expression in the form of a string, solve for x. The highest power > of x in the expression will be equal to 1. Operators allowed are +, * and > -. These are all binary operators. So, 2x would be written as 2*x. Every > operator will be followed by a single term or a constant. > > For example, consider the following equation: > > 2*x+5-(4*x-7+(4-2))=10*x-9 Given such an equation, we need to find a > solution to x -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
