示例#1
0
 static public double Exponent(double bbase, double exponent)
 {
     return(Exponentiation.Power(bbase, exponent));
 }
 public void PowerTest()
 {
     Assert.AreEqual(64, Exponentiation.Power(8, 2));
 }