I want to make random equation generator such as this:
96 - (-24) / (-24) * (-91) + 70 * 55 / (-4) * (-48) + (-10) * 61
and I want to generate three equations in textbox multiline separated by newline and always select the second eq. Thats not problem, problem is how to make random equation generator. I am able to do that via generation a random long number, add random spaces between that, replace spaces with random symbols +-*/() (and power) but thats inefficient approach.
96 - (-24) / (-24) * (-91) + 70 * 55 / (-4) * (-48) + (-10) * 61
and I want to generate three equations in textbox multiline separated by newline and always select the second eq. Thats not problem, problem is how to make random equation generator. I am able to do that via generation a random long number, add random spaces between that, replace spaces with random symbols +-*/() (and power) but thats inefficient approach.