请教C#中幂运算的问题
最近在学习c#语言,觉得比较好用。但是昨天编个小程序时发现居然没有幂运算的功能。看了帮助,只有VB有幂运算符,别的都没有,请各位大大不吝赐教,如何实现幂指数运算,最好是用c#实现的,小弟在此多谢先!!!
using System;
namespace pow
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
int i=9;
int j=2;
double m;
m=System.Math.Pow(i,j);
Console.WriteLine("m={0}",m);
}
}
}