如何从字符串中获取运算符类型(a + b)c#中的输入?

时间:2012-05-05 15:01:04

标签: c#

例如,如果用户将输入作为+ b,则应该添加两个已经声明为int a,int b

的变量。
int a = 7;
int b = 8;
string formula = console.readline();

这是我需要帮助的地方如果用户键入a + b作为公式我们应该在a和b上添加,用户可以使用任何二元运算符,公式应该从用户输入获取该运算符,请帮助

4 个答案:

答案 0 :(得分:1)

您尝试评估数学表达式。 我建议使用 NCalc

  

NCalc 是.NET中的数学表达式计算器。 NCalc可以解析任何表达式并评估结果,包括静态或动态参数和自定义函数。

答案 1 :(得分:0)

你可以这样做:

int a = 7;
int b = 8;
string formula = "a+b";
formula=formula.Replace("a",a.ToString()).Replace("b",b.ToString());

var calc = new System.Data.DataTable();
Console.WriteLine(calc.Compute(formula, ""));

答案 2 :(得分:0)

前一段时间用来评估像这样的表达式

private static double Calc(string expression)
{
    try
    {
        var table = new System.Data.DataTable();
        table.Columns.Add("expression", string.Empty.GetType(), expression);
        System.Data.DataRow row = table.NewRow();
        table.Rows.Add(row);
        return double.Parse((string)row["expression"]);
    }
    catch (Exception)
    {
        return 0;
    }
}

答案 3 :(得分:-1)

此代码允许用户输入两个数字以及他或她想要的操作员

Console.WriteLine("Please enter the first number");
            int a = int.Parse(Console.ReadLine());

            Console.WriteLine("Enter the operator you want to use");
            string c = Console.ReadLine() ;

            Console.WriteLine("Enter the last number");
            int b = int.Parse(Console.ReadLine());

            string formula = "acb";
            formula = formula.Replace("a", a.ToString()).Replace("b", b.ToString()).Replace("c", c.ToString());

            var calc = new System.Data.DataTable();
            Console.WriteLine(calc.Compute(formula, ""));