本文介绍了需要求解这样的数学方程的代码:56 * 78 +(78/8)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一个可以解决以下等式的代码:-

I need a code which can solve the equations like this :-

56*78+(78/8)


在这种情况下,我们知道必须先解决方括号,然后再除/乘,再加/减.
因此,我需要用于解决此类方程式的代码,该代码在一行中包含多个运算符.

Thnks:)


In this we know that brackets must be solved first and then divide/multiply and then add/subtract.
So, i need a code for solving this kind of equations which contains multiple operators in single line.

Thnks :)

推荐答案

IParser par = new ExpParser();
ExpEvaluator eu = new ExpEvaluator(par); 
string expresion = "56*78+(78/8)"
eu.SetExpression(expresion);
double res =eu.Evaluate();



这篇关于需要求解这样的数学方程的代码:56 * 78 +(78/8)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 03:33