比如我有a,b
求c=(a+100)^(-b)
这种类型的公式改怎么用C#实现啊?
我的怎么^是表示幂函数吧?
是这样的吧。
double c = Math.Pow((a + 100), (-b)); Console.WriteLine(c);
恩,谢谢。
Math.NET