i've a prob here, so i need a help:)

When i'm calculating expression like this "(10.5 + 3.5 / 2) * 2" with jscript vsa engine, it's ok, but now i 've a question... if in the string like above, i want to calculate also an exponent (10.5 + 3.5 / 2) * 2 + exp(2), what is the best way to do it?

PS: Math.Exp(); -- is not an option.

link|improve this question
feedback

2 Answers

proper way to code this is to make your calculations in integer and then Convert.ToString() it

link|improve this answer
feedback

If you are using jscript.net you can define exp function first and calculate expression after that. example was discussed for instance there

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.